{% load i18n l10n pages %}{% autoescape off %}{% if user.name %}{% trans "Hi " %}{{ user.name }}, {% else %}{% trans "Hi," %}{% endif %}
{% blocktrans with site_name=site.name %}
You (or someone pretending to be you) have asked to register an account
at {{ site_name }}.

If this wasn't you, please ignore this email and your address will be
removed from our records.

You need to activate your account within the next {{ expiration_days }} days.
{% endblocktrans %}
{% trans "To activate your account follow the link below:" %}

  http://{{site.domain}}{% url 'qs_accounts:activate' activation_key %}

{% blocktrans with site_name=site.name %}
Thanks,
The {{ site_name }} team
{% endblocktrans %}
{% endautoescape %}
