Changeset 0c5539a


Ignore:
Timestamp:
May 12, 2010, 8:16:38 PM (16 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, fysm-4-1, iframe, space-access, stable, stage, test-hooks
Children:
5feb719
Parents:
016afb4
git-author:
Alex Dehnert <adehnert@…> (05/12/10 20:16:38)
git-committer:
Alex Dehnert <adehnert@…> (05/12/10 20:16:38)
Message:

Enable the admin interface

Location:
asadb
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • asadb/settings.py

    r6d06a83 r0c5539a  
    7373
    7474INSTALLED_APPS = (
     75    'django.contrib.admin',
     76    'django.contrib.admindocs',
    7577    'django.contrib.auth',
    7678    'django.contrib.contenttypes',
  • asadb/urls.py

    r6d06a83 r0c5539a  
    22
    33# Uncomment the next two lines to enable the admin:
    4 # from django.contrib import admin
    5 # admin.autodiscover()
     4from django.contrib import admin
     5admin.autodiscover()
    66
    77urlpatterns = patterns('',
     
    1414
    1515    # Uncomment the next line to enable the admin:
    16     # (r'^admin/', include(admin.site.urls)),
     16    (r'^admin/', include(admin.site.urls)),
    1717)
Note: See TracChangeset for help on using the changeset viewer.