complete.html 780 B

12345678910111213141516171819202122232425
  1. {% extends "misago/emails/base.html" %}
  2. {% load i18n misago_capture %}
  3. {% block content %}
  4. {% blocktrans trimmed with user=recipient %}
  5. {{ user }}, thank you for joining us!
  6. {% endblocktrans %}
  7. <br>
  8. <br>
  9. {% block activation-message %}
  10. {% blocktrans trimmed %}
  11. You may now join discussion on our forums. Why not spend a minute or two to have a look around and share your opinions and knowledge with rest of community?
  12. {% endblocktrans %}
  13. <br>
  14. <br>
  15. {% capture trimmed as login_link %}
  16. <a href="{{ SITE_ADDRESS }}{% url LOGIN_URL %}">{% trans "this form" %}</a>
  17. {% endcapture %}
  18. {% blocktrans trimmed with login_form=login_link|safe %}
  19. You can always sign in to your account using {{ login_form }}.
  20. {% endblocktrans %}
  21. <br>
  22. {% endblock activation-message %}
  23. {% endblock content %}