2008-08-01 04:47:53 +08:00
|
|
|
{% load i18n %}{% autoescape off %}
|
2005-11-04 12:59:46 +08:00
|
|
|
{% trans "You're receiving this e-mail because you requested a password reset" %}
|
2006-06-19 01:32:15 +08:00
|
|
|
{% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}.
|
2005-07-22 23:02:40 +08:00
|
|
|
|
2008-08-01 04:47:53 +08:00
|
|
|
{% trans "Please go to the following page and choose a new password:" %}
|
|
|
|
{% block reset_link %}
|
2010-03-30 20:44:30 +08:00
|
|
|
{{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid token=token %}
|
2008-08-01 04:47:53 +08:00
|
|
|
{% endblock %}
|
2005-11-04 12:59:46 +08:00
|
|
|
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
|
2005-07-22 23:02:40 +08:00
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
{% trans "Thanks for using our site!" %}
|
2005-07-22 23:02:40 +08:00
|
|
|
|
2005-11-07 06:30:01 +08:00
|
|
|
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
|
2008-08-01 04:47:53 +08:00
|
|
|
|
|
|
|
{% endautoescape %}
|