web/ldt/user/templates/registration/password_reset_email.html
author ymh <ymh.work@gmail.com>
Tue, 08 Jun 2010 01:16:35 +0200
changeset 0 ecdfc63274bf
permissions -rw-r--r--
first import
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
{% load i18n %}{% autoescape off %}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
{% trans "You're receiving this e-mail because you requested a password reset" %}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
{% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}.
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
{% trans "Please go to the following page and choose a new password:" %}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
{% block reset_link %}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
{{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
{% endblock %}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
{% trans "Thanks for using our site!" %}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
ecdfc63274bf first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
{% endautoescape %}