Profile edit and password change views. Better login/logout templates. Some polish...
[cas.git] / src / cas / settings.py
index acc5988..3ed14b0 100644 (file)
@@ -6,7 +6,9 @@ PROJECT_ROOT = path.realpath(path.dirname(__file__))
 DEBUG = True
 TEMPLATE_DEBUG = DEBUG
 
-ADMINS = []
+ADMINS = [
+    "lrekucki@gmail.com",
+]
 
 MANAGERS = ADMINS
 
@@ -37,13 +39,11 @@ USE_I18N = True
 # Absolute path to the directory that holds media.
 # Example: "/home/media/media.lawrence.com/"
 MEDIA_ROOT = PROJECT_ROOT + '/media/'
-STATIC_ROOT = PROJECT_ROOT + '/static/'
 
 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
 # trailing slash if there is a path component (optional in other cases).
 # Examples: "http://media.lawrence.com", "http://example.com/media/"
 MEDIA_URL = '/media/'
-STATIC_URL = '/static/'
 
 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
 # trailing slash.
@@ -61,6 +61,7 @@ TEMPLATE_CONTEXT_PROCESSORS = (
     "django.core.context_processors.auth",
     "django.core.context_processors.debug",
     "django.core.context_processors.i18n",
+    'django.core.context_processors.media',
     "django.core.context_processors.request",
 )
 
@@ -75,7 +76,7 @@ MIDDLEWARE_CLASSES = (
 ROOT_URLCONF = 'cas.urls'
 
 TEMPLATE_DIRS = (
-    PROJECT_ROOT + '/templates',    
+    PROJECT_ROOT + '/templates',
 )
 
 INSTALLED_APPS = (
@@ -85,8 +86,9 @@ INSTALLED_APPS = (
     'django.contrib.sites',
     'django.contrib.admin',
     'django.contrib.admindocs',
-    
+
     'cas_provider',
+    'accounts',
 )
 
 # django-cas-provider settings