Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / contrib / admin / templates / registration / password_reset_email.html @ 1a305335

History | View | Annotate | Download (631 Bytes)

1 1a305335 officers
{% load i18n %}{% load url from future %}{% autoescape off %}
2
{% blocktrans %}You're receiving this e-mail because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}
3
4
{% trans "Please go to the following page and choose a new password:" %}
5
{% block reset_link %}
6
{{ protocol }}://{{ domain }}{% url 'django.contrib.auth.views.password_reset_confirm' uidb36=uid token=token %}
7
{% endblock %}
8
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
9
10
{% trans "Thanks for using our site!" %}
11
12
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
13
14
{% endautoescape %}