mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
f212b24b64
* The new method uses an admin configuration option (`formfield_overrides`); this makes custom admin widgets especially easy. * Refactored what was left of `formfield_for_dbfield` into a handful of smaller methods so that it's easier to hook in and return custom fields where needed. * These `formfield_for_*` methods now pass around `request` so that you can easily modify fields based on request (as in #3987). Fixes #8306, #3987, #9148. Thanks to James Bennet for the original patch; Alex Gaynor and Brian Rosner also contributed. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9760 bcc190cf-cafb-0310-a4f2-bffc1f526a37
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('',
|
|
# test_client modeltest urls
|
|
(r'^test_client/', include('modeltests.test_client.urls')),
|
|
(r'^test_client_regress/', include('regressiontests.test_client_regress.urls')),
|
|
|
|
# File upload test views
|
|
(r'^file_uploads/', include('regressiontests.file_uploads.urls')),
|
|
|
|
# Always provide the auth system login and logout views
|
|
(r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}),
|
|
(r'^accounts/logout/$', 'django.contrib.auth.views.logout'),
|
|
|
|
# test urlconf for {% url %} template tag
|
|
(r'^url_tag/', include('regressiontests.templates.urls')),
|
|
|
|
# django built-in views
|
|
(r'^views/', include('regressiontests.views.urls')),
|
|
|
|
# test urlconf for middleware tests
|
|
(r'^middleware/', include('regressiontests.middleware.urls')),
|
|
|
|
# admin view tests
|
|
(r'^test_admin/', include('regressiontests.admin_views.urls')),
|
|
(r'^generic_inline_admin/', include('regressiontests.generic_inline_admin.urls')),
|
|
|
|
# admin widget tests
|
|
(r'widget_admin/', include('regressiontests.admin_widgets.urls')),
|
|
|
|
(r'^utils/', include('regressiontests.utils.urls')),
|
|
|
|
# test urlconf for syndication tests
|
|
(r'^syndication/', include('regressiontests.syndication.urls')),
|
|
)
|