[Answer]-Password reset not working in Django 1.6.1

1👍

NoReverseMatch: Reverse for 'auth_password_reset_confirm'

You have:

url(r'^password/reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$',
    auth_views.password_reset_confirm,
    name='password_reset_confirm'),

The name attribute of that url looks like it should be auth_password_reset_confirm

👤ptr

0👍

There has been some changes in the authentication url names in Django-1.6.

👤Stan

Leave a comment