Django

Code

Changeset 5573

Show
Ignore:
Timestamp:
06/30/07 21:06:07 (1 year ago)
Author:
adrian
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/newforms-admin/django/conf/project_template/urls.py

    r4585 r5573  
    11from django.conf.urls.defaults import * 
     2 
     3# Uncomment this for admin: 
     4#from django.contrib import admin 
    25 
    36urlpatterns = patterns('', 
     
    912 
    1013    # Uncomment this for admin: 
    11     #(r'^admin/', include('django.contrib.admin.urls')), 
     14    #('^admin/(.*)', admin.site.root), 
    1215)