pytask/templates/registration/password_reset_email.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 31 Jan 2011 01:22:18 +0530
changeset 533 773dc9a66748
parent 317 cc5b6f4ed823
child 534 9627f119f14e
permissions -rw-r--r--
Use django-registration module url reverse methods than the django's.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
270
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% load i18n %}{% autoescape off %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% trans "You're receiving this e-mail because you requested a password reset" %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
{% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}.
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
{% trans "Please go to the following page and choose a new password:" %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
{% block reset_link %}
533
773dc9a66748 Use django-registration module url reverse methods than the django's.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 317
diff changeset
     7
{{ protocol }}://{{ domain }}{% url auth_password_reset_confirm uidb36=uid, token=token %}
270
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
{% endblock %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    10
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    11
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    12
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    13
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    14
{% endautoescape %}