by_user.html 403 B

12345678910111213
  1. {% extends "misago/emails/base.html" %}
  2. {% load i18n misago_capture %}
  3. {% block content %}
  4. {% blocktrans trimmed with user=recipient %}
  5. {{ user }}, to activate your account click the below link:
  6. {% endblocktrans %}
  7. <br>
  8. <br>
  9. <a href="{{ SITE_ADDRESS }}{% url 'misago:activate_by_token' user_id=recipient.id token=activation_token %}">{% trans "Activate my account!" %}</a>
  10. <br>
  11. {% endblock content %}