{% extends "misago/emails/register/complete.html" %}
{% load i18n misago_absoluteurl misago_capture %}
{% block activation-message %}
{% if activation_by_admin %}
{% blocktrans trimmed context "welcome email" %}
Before you will be able to join discussion on our site, one of administrators will have to activate your account.
{% endblocktrans %}
{% blocktrans trimmed context "welcome email" %}
You will receive an e-mail with notification once this happens.
{% endblocktrans %}
{% blocktrans trimmed context "welcome email" %}
Thank you for your patience and see you soon!
{% endblocktrans %}
{% elif activation_by_user %}
{% blocktrans trimmed context "welcome email"%}
Before you will be able to join discussion on our site, you have to activate your account. To do so, simply click the link below:
{% endblocktrans %}
{% trans "Activate my account" context "welcome email activate link" %}
{% capture trimmed as login_link %}
{% trans "this form" context "welcome email inactive sign in cta link" %}
{% endcapture %}
{% blocktrans trimmed with login_form=login_link|safe context "welcome email inactive sign in cta" %}
Once your account is activated, you can always sign in to it using {{ login_form }}.
{% endblocktrans %}
{% endif %}
{% endblock activation-message %}