diff options
| author | Baptiste Mispelon <bmispelon@gmail.com> | 2014-01-20 00:41:06 +0100 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2014-01-20 00:45:18 +0100 |
| commit | aa64079e3957ab16a03a7d8e88c74c53c4a6477d (patch) | |
| tree | a20b68179081ffa81e7381728ec03925f4cb7a79 /accounts | |
| parent | 104e726d9a3e4df73f0471c3872379e738b1751c (diff) | |
Fixed #21826 -- Fixed password reset views.
Diffstat (limited to 'accounts')
| -rw-r--r-- | accounts/urls.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/accounts/urls.py b/accounts/urls.py index fddd2ce5..70a2ca61 100644 --- a/accounts/urls.py +++ b/accounts/urls.py @@ -19,15 +19,7 @@ urlpatterns = patterns('', account_views.edit_profile, name='edit_profile', ), - url( - r'^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>.+)/$', - auth_views.password_reset_confirm, - name='auth_password_reset_confim', - ), - url( - r'^reset/done/$', - auth_views.password_reset_complete, - ), url(r'^_trac/userinfo/$', account_views.json_user_info), + url(r'', include('django.contrib.auth.urls')), url(r'', include('registration.backends.default.urls')), ) |
