pytask/templates/registration/password_reset_email.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 05 Feb 2011 03:24:52 +0530
changeset 559 96e8e65a3738
parent 534 9627f119f14e
permissions -rw-r--r--
Display Pynts on task/textbook description page. Also make some style fixes.

{% 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 %}
{% comment%}TODO: URL is hardcoded because domain already contains the URL prefix.
Should fix this hard coded URL.{% endcomment %}
{{ protocol }}://{{ domain }}/accounts/password/reset/confirm/{{ uid }}-{{ token }}
{% endblock %}
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}


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

{% endautoescape %}