macropin / django-registration

Django-registration (redux) provides user registration functionality for Django websites.
http://django-registration-redux.readthedocs.org
Other
974 stars 350 forks source link

Duplicate url pattern name #306

Closed erikcw closed 6 years ago

erikcw commented 6 years ago

The name auth_password_reset_done is listed for two different url patterns in auth_urls.py

It is being used for both r'^password/reset/$' and r'^password/reset/done/$'. The former should be changed to just auth_password_reset

joshblum commented 6 years ago

@erikcw the naming is correct as far as I can see, the password/reset/ view has a success_url parameter which points to auth_password_reset_done. Closing this for now, let me know if you run into any issues.

erikcw commented 6 years ago

You're right, my mistake. Eyes are playing tricks on me...