35👍
The reason for this error is that the django.contrib.auth.views
use different url names than the registration.auth_urls
ones. To patch this problem, override the default urls until django-registration gets updated for django 1.6, and use the same names as Django.
from django.contrib.auth import views as auth_views
urlpatterns = patterns('',
#override the default urls
url(r'^password/change/$',
auth_views.password_change,
name='password_change'),
url(r'^password/change/done/$',
auth_views.password_change_done,
name='password_change_done'),
url(r'^password/reset/$',
auth_views.password_reset,
name='password_reset'),
url(r'^password/reset/done/$',
auth_views.password_reset_done,
name='password_reset_done'),
url(r'^password/reset/complete/$',
auth_views.password_reset_complete,
name='password_reset_complete'),
url(r'^password/reset/confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$',
auth_views.password_reset_confirm,
name='password_reset_confirm'),
#and now add the registration urls
url(r'', include('registration.backends.default.urls')),
)
8👍
Here is what I used:
url(r'', include('registration.backends.default.urls')),
url(r'', include('django.contrib.auth.urls')),
Django contrib now includes the missing urls
- How can I automatically let syncdb add a column (no full migration needed)
- How does django-nose differ from the default Django test-runner
- Django queryset __contains case sensitive?
- How to emit SocketIO event on the serverside
0👍
Background
This issue seems to have cropped again for django-registration==1.0 and Django==1.6 and is documented here on the official django-registration pull request. I used the solution provided by @Jay but it didn’t work specifically for the password reset part. I ended up with this error:
Error
password_reset_confirm() got an unexpected keyword argument 'uidb36'
Solution
Instead I pulled from another django-registration repository (as mentioned in the official pull request above) by doing the following:
- pip uninstall django-registration
- pip install git+git://github.com/macropin/django-registration.git
- Modify the code for ‘urls.py’ as mentioned in the post by @Jay (thanks!)
- Remember this is a temporary solution until the official django-registration support is updated for Django 1.6
- Problem launching docker-compose : python modules not installed
- Accessing django project in LAN systems
- Django unable to find MySQLdb python module
- Django: WSGIRequest' object has no attribute 'user' on some pages?
- Calculate point based on distance and direction