Skip to content
This repository has been archived by the owner on Jun 20, 2020. It is now read-only.

Commit

Permalink
Added admin application to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
fsouza committed Jun 27, 2010
1 parent 2326cfe commit 41351d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion settings.py
Expand Up @@ -96,5 +96,5 @@
'lettuce.django',
'school',
# Uncomment the next line to enable the admin:
# 'django.contrib.admin',
'django.contrib.admin',
)
6 changes: 3 additions & 3 deletions urls.py
@@ -1,8 +1,8 @@
from django.conf.urls.defaults import *

# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
# Example:
Expand All @@ -13,5 +13,5 @@
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),

# Uncomment the next line to enable the admin:
# (r'^admin/', include(admin.site.urls)),
(r'^admin/', include(admin.site.urls)),
)

0 comments on commit 41351d1

Please sign in to comment.