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.

{% load i18n %}{% autoescape off %}
{% trans "You're receiving this e-mail because you requested a password reset" %}
{% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}.

{% trans "Please go to the following page and choose a new password:" %}
{% block reset_link %}
{{ protocol }}://{{ domain }}{% url auth_password_reset_confirm uidb36=uid, token=token %}
{% endblock %}
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}


{% blocktrans %}The {{ site_name }} team{% endblocktrans %}

{% endautoescape %}