mirror of
https://github.com/django/django.git
synced 2025-10-28 16:16:12 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
14 lines
584 B
Python
14 lines
584 B
Python
# These URLs are normally mapped to /admin/urls.py. This URLs file is
|
|
# provided as a convenience to those who want to deploy these URLs elsewhere.
|
|
# This file is also used to provide a reliable view deployment for test purposes.
|
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('',
|
|
('^logout/$', 'django.contrib.auth.views.logout'),
|
|
('^password_change/$', 'django.contrib.auth.views.password_change'),
|
|
('^password_change/done/$', 'django.contrib.auth.views.password_change_done'),
|
|
('^password_reset/$', 'django.contrib.auth.views.password_reset')
|
|
)
|
|
|