src/cm/templates/email/forgot_pw.txt
author Simon Descarpentries <sid@sopinspace.com>
Fri, 04 Apr 2014 18:23:30 +0200
changeset 624 3dd70d01cec2
parent 225 67e1a89d6bca
permissions -rw-r--r--
Divide tests.js in two distinct files, factorize helper functions in lib/test_hlp.js
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
225
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     1
{% load i18n %}{% autoescape off %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     2
{% trans "You're receiving this e-mail because you requested a password reset" %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     3
{% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}.
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     4
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     5
{% trans "Please go to the following page and choose a new password:" %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     6
{% block reset_link %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     7
{{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     8
{% endblock %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
     9
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
    10
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents: 220
diff changeset
    11
{% endautoescape %}