12345678910111213141516171819202122232425 |
- {% extends "misago/emails/base.html" %}
- {% load i18n misago_capture %}
- {% block content %}
- {% blocktrans trimmed with user=recipient %}
- {{ user }}, thank you for joining us!
- {% endblocktrans %}
- <br>
- <br>
- {% block activation-message %}
- {% blocktrans trimmed %}
- 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?
- {% endblocktrans %}
- <br>
- <br>
- {% capture trimmed as login_link %}
- <a href="{{ SITE_ADDRESS }}{% url LOGIN_URL %}">{% trans "this form" %}</a>
- {% endcapture %}
- {% blocktrans trimmed with login_form=login_link|safe %}
- You can always sign in to your account using {{ login_form }}.
- {% endblocktrans %}
- <br>
- {% endblock activation-message %}
- {% endblock content %}
|