so, Django has a couple views for password resets.  First is the actual 
password reset page, which sends a POST request, then redirects to Done 
which is the template returned to the server.  What's happening here is 
Django can't find the URL name password_reset_done, and throws this error

If you're customizing password reset, I would suggest looking at 
https://wsvincent.com/django-user-authentication-tutorial-password-reset/

https://github.com/django-extensions/django-extensions has a great utility, 
show_urls, as a management command.  This shows all the URLs in your 
project, along with the view classes/functions mapped to them as well as 
the url namespaces.  I wonder if you've done somethign else that removed 
password_reset_done from the project?

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d2b64377-3db1-43a0-8061-9bb5b60abc4f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to