mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
a19ed8aea3
This is a backward incompatible change. The admin contrib app has been refactored. The newforms module has several improvements including FormSets and Media definitions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
8 lines
206 B
Python
8 lines
206 B
Python
from django.conf.urls.defaults import *
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
|
(r'^admin/(.*)', admin.site.root),
|
|
)
|