> used the url tag in the template wrong - it changed between two django 
versions

Thanks Christian, but I'm pretty sure the reverse is being invoked from the 
Django auth code (django.contrib.auth.password_reset) , not my template; 
nevertheless the template I'm using (registration/password_reset_form.html) 
is:

{% extends "registration/base_registration.html" %}
{% load i18n %}

{% block title %}{{ block.super }} - {% trans 'Password reset' %}{% 
endblock %}

{% block pageheading %}{{ block.super }}Password reset{% endblock %}

{% block content %}
<p>{% trans "Forgotten your password? Enter your e-mail address below, and 
we'll e-mail instructions for setting a new one." %}</p>

<form action="" method="post">
{{ form.email.errors }}
<p><label for="id_email">{% trans 'E-mail address:' %}</label> {{ 
form.email }} <input type="submit" value="{% trans 'Reset my password' %}" 
/></p>
</form>

{% endblock %}

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to