12 lines
479 B
HTML
12 lines
479 B
HTML
{% load i18n %}{% autoescape off %}
|
|
{% blocktrans %}You're receiving this email because you trying to register new account at {{ site_name }}.{% endblocktrans %}
|
|
|
|
{% trans "Please confirm your email address to complete the registration:" %}
|
|
{% block signup_confirm %}
|
|
http://{{ domain_uri }}{% url 'auth:signup-finish' uid=uid token=token %}
|
|
{% endblock %}
|
|
|
|
{% trans "Thanks for using our site!" %}
|
|
|
|
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
|
|
{% endautoescape %} |