pytask/templates/registration/password_reset_email.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 15:04:41 +0530
changeset 79 cc5b6f4ed823
parent 69 c6bca38c1cbf
permissions -rw-r--r--
prettified the registration templates
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32
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 %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
{{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %}
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 %}