required.html 534 B

123456789
  1. {% extends "_message/base.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block content %}
  5. <div class="alert-icon"><span><i class="icon-remove icon-white"></i></span></div>
  6. <p><strong>{% trans username=message.user.username %}{{ username }}, your account has to be activated in order for you to be able to request new password.{% endtrans %}</strong></p>
  7. <p class="protip"><a href="{% url 'send_activation' %}">{% trans %}Click here if you haven't received activation e-mail.{% endtrans %}</a></p>
  8. {% endblock %}