testappproj/templates/registration/password_reset_email.html
changeset 0 0b061d58aea3
equal deleted inserted replaced
-1:000000000000 0:0b061d58aea3
       
     1 {% load i18n %}{% autoescape off %}
       
     2 {% trans "You're receiving this e-mail because you requested a password reset" %}
       
     3 {% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}.
       
     4 
       
     5 {% trans "Please go to the following page and choose a new password:" %}
       
     6 {% block reset_link %}
       
     7 {{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %}
       
     8 {% endblock %}
       
     9 {% trans "Your username, in case you've forgotten:" %} {{ user.username }}
       
    10 
       
    11 {% trans "Thanks for using our site!" %}
       
    12 
       
    13 {% blocktrans %}The {{ site_name }} team{% endblocktrans %}
       
    14 
       
    15 {% endautoescape %}