Duplicate url pattern name
erikcw opened this issue · 2 comments
erikcw commented
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
@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
You're right, my mistake. Eyes are playing tricks on me...