pytask/templates/registration/password_reset_email.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 31 Jan 2011 01:36:43 +0530
changeset 534 9627f119f14e
parent 533 773dc9a66748
permissions -rw-r--r--
Change password reset email URL to hard coded URL.
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 %}
534
9627f119f14e Change password reset email URL to hard coded URL.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 533
diff changeset
     7
{% comment%}TODO: URL is hardcoded because domain already contains the URL prefix.
9627f119f14e Change password reset email URL to hard coded URL.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 533
diff changeset
     8
Should fix this hard coded URL.{% endcomment %}
9627f119f14e Change password reset email URL to hard coded URL.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 533
diff changeset
     9
{{ protocol }}://{{ domain }}/accounts/password/reset/confirm/{{ uid }}-{{ token }}
270
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    10
{% endblock %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    11
{% 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
    12
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
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    15
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    16
{% endautoescape %}