Django

Code

Changeset 91

Show
Ignore:
Timestamp:
07/15/05 22:12:07 (3 years ago)
Author:
adrian
Message:

Added ROOT_URLCONF and MIDDLEWARE_CLASSES to project_template.settings.admin

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/conf/project_template/settings/admin.py

    r83 r91  
    66    # Put strings here, like "/home/html/django_templates". 
    77) 
     8ROOT_URLCONF = 'django.conf.urls.admin' 
     9MIDDLEWARE_CLASSES = ( 
     10    'django.middleware.admin.AdminUserRequired', 
     11    'django.middleware.common.CommonMiddleware', 
     12)