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