Changeset 75 for trunk/urls.py
- Timestamp:
- 06/28/08 17:35:22 (5 months ago)
- Files:
-
- trunk/urls.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/urls.py
r20 r75 4 4 from django.conf.urls.defaults import * 5 5 6 # Uncomment this for admin: 7 from django.contrib import admin 8 6 9 handler404 = 'common.views.page_not_found' 7 10 handler500 = 'common.views.server_error' 8 11 9 12 urlpatterns = patterns('', 10 (r'^admin/', include('django.contrib.admin.urls')), 13 # Uncomment this for admin docs: 14 (r'^admin/doc/', include('django.contrib.admindocs.urls')), 15 16 # Uncomment this for admin: 17 (r'^admin/(.*)', admin.site.root), 11 18 ) 12 19
