Ticket #8129: new_email.diff

File new_email.diff, 691 bytes (added by Dave Naffziger, 16 years ago)
  • contrib/admin/templates/registration/password_reset_email.html

     
    44
    55{% trans "Please go to the following page and choose a new password:" %}
    66{% block reset_link %}
    7 {{ protocol }}://{{ domain }}/reset/{{ uid }}-{{ token }}/
     7{{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %}
    88{% endblock %}
    99{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
    1010
Back to Top