Re: password_reset error

2017-04-10 Thread sarfaraz ahmed
Thanks... I tried... everythings... It worked.. On 10 April 2017 at 13:21, ludovic coues wrote: > That should be all the information needed to fix the problem :) > > TL:DR: > use `{{ protocol }}://{{ domain }}{% url > 'user_management:password_reset_confirm' > uidb64=uid token=token %}` on

Re: password_reset error

2017-04-10 Thread ludovic coues
That should be all the information needed to fix the problem :) TL:DR: use `{{ protocol }}://{{ domain }}{% url 'user_management:password_reset_confirm' uidb64=uid token=token %}` on line 5 of your email template. Long answer: The amount of information you provided last time would have been enoug

password_reset error

2017-04-09 Thread sarfaraz ahmed
Hello Friends, I have attempted to make CustomUser model in django to signin using email. I am using password_reset view when I am getting this error. I checked password_reset view and found i am getting error during this line form.save(**opts) in password_reset ---

NoReverseMatch password_reset Error

2015-09-17 Thread Martin Jablečník
Hello, on Stackoverflow I created this question: http://stackoverflow.com/questions/32625997/upgrade-django-and-noreversematch-password-error Do you know anybody how can I fix it? I tried somethong from this: https://docs.djangoproject.com/en/1.8/releases/1.6/#django-contrib-auth-password-reset-

Re: Password_reset error

2012-04-10 Thread Святослав Б
Post full views.py file 2012/4/9 kapil Garg > Hi All, > > > I'm trying to implement *Forgot Password* in my django application and > have done the very basic as mentioned in the documentation with all the > default values but on clicking the Link, I get the error "*ViewDoesNotExist > at /acco

Re: Password_reset error

2012-04-10 Thread Ejah
BTW, there is django-registration that takes care of all of this already. You can save yourself some time there. Hth On 9 apr, 19:29, kapil Garg wrote: > Hi All, > > I'm trying to implement  *Forgot Password* in my django application and > have  done the very basic as mentioned in the documentati

Re: Password_reset error

2012-04-10 Thread Ejah
I assume App is the name of your application within your project, it might not be on the python path. Can you import it from a python/ django shell? On 9 apr, 19:29, kapil Garg wrote: > Hi All, > > I'm trying to implement  *Forgot Password* in my django application and > have  done the very basic