{% extends "traxauth/base.html" %} {% load i18n %} {% block title %}{% trans "Account activation pending" %}{% endblock %} {% block breadcrumbs-box %} {{ block.super }} › {% trans "Notice" %} {% endblock %} {% block coltype %}login{% endblock %} {% block content_title %}

{% trans "Account activation pending" %}

{% endblock %} {% block content %}

{% trans "Your registration information has been submitted successfully." %}

{% blocktrans %}However, your account needs to be activated before you can use it. An email containing instructions on how to activate your account has been sent.{% endblocktrans %}

{% with settings.ACCOUNT_ACTIVATION_DAYS|pluralize as plural_suffix %} {% with settings.ACCOUNT_ACTIVATION_DAYS as activation_days %}

{% blocktrans %}Please note that we will store your registration information for {{ activation_days }} day{{ plural_suffix }}.{% endblocktrans %}

{% endwith %} {% endwith %}
{% endblock %}