1 # -*- encoding: utf-8 -*-
8 EMAIL_SUBJECT_PREFIX
= '[auf_rh_dae - %s] ' % socket
.gethostname()
10 ('Équipe ARI-SI', 'developpeurs@ca.auf.org'),
15 TIME_ZONE
= 'Canada/Montreal'
17 LANGUAGE_CODE
= 'fr-ca'
19 # Absolute path to the directory that holds media.
20 # Example: "/home/media/media.lawrence.com/"
21 MEDIA_ROOT
= os
.path
.join(os
.path
.dirname(__file__
), 'media')
23 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
24 # trailing slash if there is a path component (optional in other cases).
25 # Examples: "http://media.lawrence.com", "http://example.com/media/"
28 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
30 # Examples: "http://foo.com/media/", "/media/".
31 ADMIN_MEDIA_PREFIX
= '/admin_media/'
33 # Don't share this with anybody.
34 SECRET_KEY
= '^2w#%abp_d+e#(7f5w$leef50)c@4y38cnn#ccji@84$2^rt#l'
36 MIDDLEWARE_CLASSES
= (
37 'django.middleware.common.CommonMiddleware',
38 'django.contrib.sessions.middleware.SessionMiddleware',
39 'django.contrib.auth.middleware.AuthenticationMiddleware',
40 'django.middleware.doc.XViewMiddleware',
43 ROOT_URLCONF
= 'project.urls'
49 'admin_tools.theming',
51 'admin_tools.dashboard',
52 'django.contrib.auth',
53 'django.contrib.contenttypes',
54 'django.contrib.sessions',
55 'django.contrib.admin',
59 TEMPLATE_CONTEXT_PROCESSORS
= (
60 'django.core.context_processors.auth',
61 'django.core.context_processors.debug',
62 'django.core.context_processors.i18n',
63 'django.core.context_processors.media',
64 'django.contrib.messages.context_processors.messages',
65 'django.core.context_processors.request',
66 'auf.django.skin.context_processors.auf',
71 'django.template.loaders.filesystem.load_template_source',
72 'django.template.loaders.app_directories.load_template_source',
76 os
.path
.join(os
.path
.dirname(__file__
), "templates"),