templates/registration/password_reset_email.html
author Nishanth Amuluru <nishanth@fossee.in>
Wed, 05 Jan 2011 18:48:14 +0530
changeset 215 84ec0ca5bc68
parent 210 85165597c592
permissions -rw-r--r--
Added a page for displaying all the textbooks
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 %}