mirror of
https://github.com/Hopiu/django.git
synced 2026-03-21 08:20:30 +00:00
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
7 lines
206 B
Python
7 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),
|
|
)
|