Re: Password reset custom view

2017-04-09 Thread sarfaraz ahmed
t/done/$', auth_views.password_reset_done, >> {'template_name': 'user_management/password_rese >> t_done.html','post_reset_redirect':'/reset/done/'}, >> name='password_reset_done'), >> >> >> >>

Re: Password reset custom view

2017-04-09 Thread sarfaraz ahmed
:* django-users@googlegroups.com [mailto:django-users@ > googlegroups.com] *On Behalf Of *sarfaraz ahmed > *Sent:* Sunday, April 9, 2017 3:13 PM > *To:* django-users@googlegroups.com > *Subject:* Re: Password reset custom view > > > > Here is full error message > ---

RE: Password reset custom view

2017-04-09 Thread Matthew Pava
one/'}, name='password_reset_done'), From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of sarfaraz ahmed Sent: Sunday, April 9, 2017 3:13 PM To: django-users@googlegroups.com Subject: Re: Password reset custom view Here is full error

Re: Password reset custom view

2017-04-09 Thread sarfaraz ahmed
Here is full error message NoReverseMatch at /password_reset/ Reverse for 'password_reset_done' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: [] Request Method: GET Request URL: ht

Re: Password reset custom view

2017-04-09 Thread sarfaraz ahmed
This is full url.py... i have made all templates I also used name="password_reset_done". But still get same error On 9 April 2017 at 18:19, ludovic coues wrote: > Do you mind to share your full urls.py file and the full traceback ? > > If I have to take a guess with the informations you have

Re: Password reset custom view

2017-04-09 Thread ludovic coues
Do you mind to share your full urls.py file and the full traceback ? If I have to take a guess with the informations you have have shared, I would say the line url(r'^password_reset/done/$', auth_views.password_reset_done, {'template_name': 'user_management/password_reset_done.html','post_

Password reset custom view

2017-04-08 Thread sarfaraz ahmed
urlpatterns = [ url(r'^login/',login,name='login'), url(r'^auth_view/',auth_view, name='auth_view'), url(r'^signup_success/',signup_success,name='signup_success'), url(r'^signup/',signup,name='signup'), url(r'^logout/',logout,name='