user.html 521 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-info-sign icon-white"></i></span></div>
  6. <p><strong>{% trans username=message.user.username %}{{ username }}, you have to activate your account before you will be able to sign in.{% 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 %}