Changeset 8026
- Timestamp:
- 07/21/08 12:10:27 (5 months ago)
- Files:
-
- django/trunk/django/conf/project_template/urls.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/conf/project_template/urls.py
r8009 r8026 1 1 from django.conf.urls.defaults import * 2 2 3 # Uncomment th is foradmin:3 # Uncomment the next two lines to enable the admin: 4 4 # from django.contrib import admin 5 6 # Uncomment to load INSTALLED_APPS admin.py module for default AdminSite instance.7 5 # admin.autodiscover() 8 6 … … 11 9 # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')), 12 10 13 # Uncomment th is for admin docs:11 # Uncomment the next line to enable admin documentation: 14 12 # (r'^admin/doc/', include('django.contrib.admindocs.urls')), 15 13 16 # Uncomment th is foradmin:14 # Uncomment the next line for to enable the admin: 17 15 # (r'^admin/(.*)', admin.site.root), 18 16 )
