| author | Nishanth Amuluru <nishanth@fossee.in> |
| Wed, 05 Jan 2011 22:30:45 +0530 | |
| changeset 219 | f04a1ec7a07f |
| parent 210 | 85165597c592 |
| permissions | -rw-r--r-- |
|
210
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
1 |
{% load i18n %}{% autoescape off %}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
2 |
{% trans "You're receiving this e-mail because you requested a password reset" %}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
3 |
{% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}.
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
4 |
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
5 |
{% trans "Please go to the following page and choose a new password:" %}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
6 |
{% block reset_link %}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
7 |
{{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
8 |
{% endblock %}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
9 |
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
10 |
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
11 |
{% trans "Thanks for using our site!" %}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
12 |
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
13 |
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
14 |
|
|
85165597c592
added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff
changeset
|
15 |
{% endautoescape %}
|