|
Revision 7809, 0.6 kB
(checked in by brosner, 5 months ago)
|
newforms-admin: Merged from trunk up to [7808]. Fixed #7519, #7573
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
# These URLs are normally mapped to /admin/urls.py. This URLs file is |
|---|
| 2 |
# provided as a convenience to those who want to deploy these URLs elsewhere. |
|---|
| 3 |
# This file is also used to provide a reliable view deployment for test purposes. |
|---|
| 4 |
|
|---|
| 5 |
from django.conf.urls.defaults import * |
|---|
| 6 |
|
|---|
| 7 |
urlpatterns = patterns('', |
|---|
| 8 |
('^logout/$', 'django.contrib.auth.views.logout'), |
|---|
| 9 |
('^password_change/$', 'django.contrib.auth.views.password_change'), |
|---|
| 10 |
('^password_change/done/$', 'django.contrib.auth.views.password_change_done'), |
|---|
| 11 |
('^password_reset/$', 'django.contrib.auth.views.password_reset') |
|---|
| 12 |
) |
|---|