2012-04-25 03:55:52 +08:00
|
|
|
{% load i18n %}{% autoescape off %}
|
2011-02-21 21:46:13 +08:00
|
|
|
{% blocktrans %}You're receiving this e-mail because you requested a password reset 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-11-20 14:22:28 +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 %}
|