2011-04-30 05:18:32 +00:00
|
|
|
{% load i18n %}{% autoescape off %}
|
2012-10-30 06:42:21 +00:00
|
|
|
{% blocktrans %}You're receiving this e-mail because you requested a password reset for your user account at {{ site_name }}. {% endblocktrans %}
|
2011-04-30 05:18:32 +00:00
|
|
|
|
|
|
|
{% trans "Please go to the following page and choose a new password:" %}
|
|
|
|
{% block reset_link %}
|
2012-04-11 11:48:20 +00:00
|
|
|
{{ protocol }}://{{ domain }}{% url auth.views.password_reset_confirm uidb36=uid, token=token %}
|
2011-04-30 05:18:32 +00:00
|
|
|
{% endblock %}
|
|
|
|
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
|
|
|
|
|
|
|
|
{% trans "Thanks for using our site!" %}
|
|
|
|
|
|
|
|
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
|
|
|
|
|
|
|
|
{% endautoescape %}
|