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