Changes between Version 45 and Version 46 of NewformsAdminBranch
- Timestamp:
- May 1, 2008, 1:39:34 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewformsAdminBranch
v45 v46 45 45 46 46 urlpatterns = patterns('', 47 ( '^admin/(.*)', admin.site.root),47 (r'^admin/(.*)', admin.site.root), 48 48 ) 49 49 }}} … … 76 76 77 77 urlpatterns = patterns('', 78 ( '^book_admin/(.*)', site1.root),79 ( '^music_admin/(.*)', site2.root),78 (r'^book_admin/(.*)', site1.root), 79 (r'^music_admin/(.*)', site2.root), 80 80 ) 81 81 }}} … … 199 199 {{{ 200 200 #!python 201 (r'^admin/doc/', include('django.contrib.admindocs.urls')),201 (r'^admin/doc/', include('django.contrib.admindocs.urls')), 202 202 }}} 203 203