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