Changeset 9486 for djangoproject.com/django_website/apps/accounts
- Timestamp:
- 11/17/08 13:48:29 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
djangoproject.com/django_website/apps/accounts/urls.py
r7369 r9486 10 10 name='registration_register', 11 11 ), 12 url( 13 r'^reset/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$', 14 'django.contrib.auth.views.password_reset_confirm', 15 name='auth_password_reset_confim', 16 ), 17 url( 18 r'^reset/done/$', 19 'django.contrib.auth.views.password_reset_complete' 20 ), 12 21 (r'', include('registration.urls')), 13 22 )
