{% extends "misago/base.html" %} {% load i18n %} {% block title %}{% trans "Registration complete" %} | {{ block.super }}{% endblock %} {% block content %}
{% blocktrans trimmed with username=registered_user.username %} {{ username }}, your account has been created, but you have to activate it before you will be able to sign in. {% endblocktrans %}
{% blocktrans trimmed with email=registered_user.email %} We have sent an e-mail to {{ email }} with a link that you have to click to activate your account. {% endblocktrans %}
{% elif activation_by_admin %}{% blocktrans trimmed with username=registered_user.username %} {{ username }}, your account has been created, but administrator has to activate it before you will be able to sign in. {% endblocktrans %}
{% blocktrans trimmed %} You will be notified with e-mail when this happens. {% endblocktrans %}
{% endif %}