1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

newforms-admin: Changed project_template urls.py to use the new style for including the admin

git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@5573 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-07-01 02:06:07 +00:00
parent 6f4e933fcc
commit 49d25eec2c

View File

@ -1,5 +1,8 @@
from django.conf.urls.defaults import *
# Uncomment this for admin:
#from django.contrib import admin
urlpatterns = patterns('',
# Example:
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
@ -8,5 +11,5 @@ urlpatterns = patterns('',
#(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment this for admin:
#(r'^admin/', include('django.contrib.admin.urls')),
#('^admin/(.*)', admin.site.root),
)