mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
aaf77c1676
Thanks to Florian Apolloner for both the initial patch and his final push to get this fixed, to Dario Ocles for his great work on the admin templates and switching the admin_doc application to also use named URLs, to Mikko Hellsing for his comments and to Jannis and Julien for their review and design guidance. Fixes #15294. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16857 bcc190cf-cafb-0310-a4f2-bffc1f526a37
8 lines
148 B
Python
8 lines
148 B
Python
from django.conf.urls.defaults import *
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^admin/', include(admin.site.urls)),
|
|
)
|
|
|