Ticket #13232: django_contrib_admin_password_reset_email_url_tag_bug.diff

File django_contrib_admin_password_reset_email_url_tag_bug.diff, 760 bytes (added by anonymous, 14 years ago)
  • django/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 }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=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