Django Userena Error Reverse For 'password_reset_done' With Arguments '()' And Keyword Arguments '{}' Not Found. 0 Pattern(s) Tried: []
I am using Django Userena and in the password reset portion i am getting the following error whenever i click on the password reset link.I am using Django 1.6.I have found several
Solution 1:
This is because Django's built-in password_reset function is calling reverse('password_reset_done')
. You can see the code here.
What you'll want to do is pass the name of the url in the argument post_reset_redirect
that you want password_reset
to redirect to.
Post a Comment for "Django Userena Error Reverse For 'password_reset_done' With Arguments '()' And Keyword Arguments '{}' Not Found. 0 Pattern(s) Tried: []"