Re: Big Problem After Going Live: NoReverseMatch at /login/ Reverse for 'password_reset' not found. 'password_reset' is not a valid view function or pattern name

2020-01-31 Thread Dave Ko
n is that Django is looking for the password >> reset view at password_reset, and that url path doesn't exist anywhere in >> urls.py. I see a path named "password-reset", which won't match. >> >> Let's try to rename that url conf to password_rese

Re: Big Problem After Going Live: NoReverseMatch at /login/ Reverse for 'password_reset' not found. 'password_reset' is not a valid view function or pattern name

2020-01-31 Thread Dave Ko
Hi Jorge, I have changed to it "password_reset" from "password-reset" But what i type www.roastias/password_reset/ it shows no url, but i have checked my folders so the templates/users/password_reset.html and reset of the password related urls in the folder but not on

Re: Big Problem After Going Live: NoReverseMatch at /login/ Reverse for 'password_reset' not found. 'password_reset' is not a valid view function or pattern name

2020-01-31 Thread Jorge Gimeno
I apologize to the list for posting all the emails to everyone. I'll keep this going off list. -Jorge On Fri, Jan 31, 2020 at 10:09 PM Jorge Gimeno wrote: > What I believe is going on is that Django is looking for the password > reset view at password_reset, and that url path do

Re: Big Problem After Going Live: NoReverseMatch at /login/ Reverse for 'password_reset' not found. 'password_reset' is not a valid view function or pattern name

2020-01-31 Thread Jorge Gimeno
What I believe is going on is that Django is looking for the password reset view at password_reset, and that url path doesn't exist anywhere in urls.py. I see a path named "password-reset", which won't match. Let's try to rename that url conf to password_reset, and

Re: Big Problem After Going Live: NoReverseMatch at /login/ Reverse for 'password_reset' not found. 'password_reset' is not a valid view function or pattern name

2020-01-31 Thread Dave Ko
>>>>path('profile/', users_view.profile, name='profile'), >>>>path('login/', auth_views.LoginView.as_view(template_name= >>>> 'users/login.html'), name='login'), >>>>path('logout/', auth_vie

Re: Big Problem After Going Live: NoReverseMatch at /login/ Reverse for 'password_reset' not found. 'password_reset' is not a valid view function or pattern name

2020-01-31 Thread Dave Ko
t;path('profile/', users_view.profile, name='profile'), >>path('login/', auth_views.LoginView.as_view(template_name= >> 'users/login.html'), name='login'), >>path('logout/', auth_views.LogoutView.as_view(template_name= >> 'users/logo

Re: Big Problem After Going Live: NoReverseMatch at /login/ Reverse for 'password_reset' not found. 'password_reset' is not a valid view function or pattern name

2020-01-31 Thread Jorge Gimeno
'), >>>path('login/', auth_views.LoginView.as_view(template_name= >>> 'users/login.html'), name='login'), >>>path('logout/', auth_views.LogoutView.as_view(template_name= >>> 'users/logout.html'), name='logout

Re: Big Problem After Going Live: NoReverseMatch at /login/ Reverse for 'password_reset' not found. 'password_reset' is not a valid view function or pattern name

2020-01-31 Thread Dave Ko
view(template_name= >> 'users/logout.html'), name='logout'), >>path('password-reset/', >> auth_views.PasswordResetView.as_view( >>template_name='users/password_reset.html', >&

Re: password_reset error

2017-04-10 Thread sarfaraz ahmed
ulttags.py#L428-L434 > [2] https://github.com/django/django/blob/1.10.5/django/ > contrib/auth/forms.py#L278-L286 > > 2017-04-10 7:09 GMT+02:00 sarfaraz ahmed : > >> Hello Friends, >> >> I ha

Re: password_reset error

2017-04-10 Thread ludovic coues
ob/1.10.5/django/contrib/auth/forms.py#L278-L286 2017-04-10 7:09 GMT+02:00 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 v

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: Bug in Django 1.6.6 password_reset when user never logged in

2014-09-23 Thread Collin Anderson
I followed your steps and can't reproduce your issue. In django 1.6, last_login is null=False, so it should never be None. django 1.8 (master) changes the database to allow a null last_login, so if you've created the user using django1.8 and reset their password using django1.6 I could see that

Bug in Django 1.6.6 password_reset when user never logged in

2014-09-22 Thread gcivil
I found what I think is a bug in Django 1.6.6 Test Case 1) Create new user 2) Do not login and try to reset password using password_reset You will see the following error AttributeError at /password_reset/ 'NoneType' object has no attribute 'replace' Request Method:

Re: Password_reset error

2012-04-10 Thread Святослав Б
"*ViewDoesNotExist > at /accounts/password_reset/*" > > Tried save in module .views. Error was: 'module' object has no > attribute 'save' > > > what am I missing here ? Below is the code - > > *urls.py:* > > (r'^accounts/password

Re: Password_reset error

2012-04-10 Thread Ejah
mentioned in the documentation with all the > default values but on clicking the Link, I get the error  "*ViewDoesNotExist > at /accounts/password_reset/*" > > Tried save in module .views. Error was: 'module' object has > no attribute 'save' > > what am

Re: Password_reset error

2012-04-10 Thread Ejah
ve  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 /accounts/password_reset/*" > > Tried save in module .views. Error was: 'module' object has > no attribute &

Re: password_reset email template issue

2012-03-11 Thread Bolang
You need to configure your 'sites'. You can configure it in admin page On 03/12/2012 05:30 AM, Scott Macri wrote: I'm having an issue with my email template for the password_reset view. For some reason I keep getting the following instead of my template text: You're r

Re: password_reset email template issue

2012-03-11 Thread hack
sue with my email template for the password_reset > view. For some reason I keep getting the following instead of my > template text: > You're receiving this e-mail because you requested a password reset > for your user account at example.com. > > Please go to the follow

password_reset email template issue

2012-03-11 Thread Scott Macri
I'm having an issue with my email template for the password_reset view. For some reason I keep getting the following instead of my template text: You're receiving this e-mail because you requested a password reset for your user account at example.com. Please go to the following page an

password_reset only for not loggedin

2011-02-18 Thread galago
is it possible, to deny access to django.contrib.auth.views.password_reset for users who are authenticated? I want to use it, and make it only for not logged in. I can't figure out how to do that. I have done all things with reset, but all users can enter it:/ -- You received this message beca

password_reset and the "next" parameter

2009-02-26 Thread zellyn
heck before I cut-n-paste rebuild password_reset and wrap password_reset_confirm. I'd like users to eventually be taken back to where they were, after they successfully reset their passwords.) Thanks, Zellyn Hunter --~--~-~--~~~---~--~~ You received this mess

Re: password_reset

2008-10-14 Thread Alessandro Ronchi
i must add it also doesn't print the newpassword in the email it sends. If you have a working password_reset template, please share with the community :) 2008/10/14 Alessandro <[EMAIL PROTECTED]>: > I want to let users reset their password, so I've used the password_reset >

password_reset

2008-10-14 Thread Alessandro
I want to let users reset their password, so I've used the password_reset view. I don't want to show my admin site to users, so I've overwritten the template (r'^accounts/password_reset[/]*$', 'django.contrib.auth.views.password_reset' ,{'template_name