12345678 |
- {% extends "_message/base.html" %}
- {% load i18n %}
- {% block content %}
- <div class="alert-icon"><span><i class="icon-info-sign icon-white"></i></span></div>
- <p><strong>{% trans %}Check your inbox!{% endtrans %}</strong></p>
- <p>{% trans username=message.user.username, email=message.user.email %}{{ username }}, we have mailed new activation instructions to your email at {{ email }}.{% endtrans %}</p>
- {% endblock %}
|