settings: Enable the admin interface.
authorMatthijs Kooijman <matthijs@stdin.nl>
Tue, 19 Oct 2010 08:55:21 +0000 (10:55 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Tue, 19 Oct 2010 09:03:20 +0000 (11:03 +0200)
settings.py
urls.py

index c6bd83d6a5771d0b205f27bd1cdade4fdd01d029..91b6996f18d087b673ff2c3fc6ecec5278a1297b 100644 (file)
@@ -47,7 +47,7 @@ MEDIA_URL = ''
 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
 # trailing slash.
 # Examples: "http://foo.com/media/", "/media/".
-ADMIN_MEDIA_PREFIX = '/media/'
+ADMIN_MEDIA_PREFIX = '/admin/media/'
 
 # Make this unique, and don't share it with anybody.
 SECRET_KEY = 'dd1=%ckg%xhi((eq)^@ri0o62trw-j!3(4bed9#u5)$_h&a!)0'
@@ -80,6 +80,9 @@ LOGIN_REDIRECT_URL = "/reserveren/"
 
 INSTALLED_APPS = (
     'django.contrib.auth',
+    'django.contrib.contenttypes',
+    'django.contrib.sessions',
+    'django.contrib.admin',
     'tickets',
 )
 
diff --git a/urls.py b/urls.py
index 3770765e7206dd777cadc24247c6672778d43d11..e3a1d5c536576e115a035203f8ef802e03e27e24 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -1,8 +1,7 @@
 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('',
     (r'^reserveren/$', 'dorestad-bookings.tickets.views.book'),
@@ -13,8 +12,8 @@ urlpatterns = patterns('',
     # to INSTALLED_APPS to enable admin documentation:
     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
 
-    # Uncomment the next line to enable the admin:
-    (r'^admin/(.*)', admin.site.root),
+    # Enable the auto admin interface
+    (r'^admin/(.*)', admin.site.root),
     url(r'^login/$', 'django.contrib.auth.views.login', {'template_name': 'tickets/login.html'}, name='login'),
     url(r'^logout/$', 'django.contrib.auth.views.logout_then_login', name='logout'),
 )