Commit | Line | Data |
---|---|---|
5e23d90d OL |
1 | # -*- encoding: utf-8 -*- |
2 | ||
3 | import os | |
4 | import socket | |
5 | from conf import * | |
6 | ||
3a2f12b2 OL |
7 | PROJET_TITRE = "Demande d'autorisation d'embauche" |
8 | ||
5e23d90d OL |
9 | # Rapports d'erreurs |
10 | EMAIL_SUBJECT_PREFIX = '[auf_rh_dae - %s] ' % socket.gethostname() | |
11 | ADMINS = ( | |
12 | ('Équipe ARI-SI', 'developpeurs@ca.auf.org'), | |
13 | ) | |
14 | ||
15 | MANAGERS = ADMINS | |
16 | ||
17 | TIME_ZONE = 'Canada/Montreal' | |
18 | ||
19 | LANGUAGE_CODE = 'fr-ca' | |
20 | ||
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') | |
24 | ||
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/" | |
28 | MEDIA_URL = '/media/' | |
29 | ||
30 | # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a | |
31 | # trailing slash. | |
32 | # Examples: "http://foo.com/media/", "/media/". | |
21f749ab | 33 | ADMIN_MEDIA_PREFIX = '/media/django/' |
5e23d90d OL |
34 | |
35 | # Don't share this with anybody. | |
36 | SECRET_KEY = '^2w#%abp_d+e#(7f5w$leef50)c@4y38cnn#ccji@84$2^rt#l' | |
37 | ||
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', | |
43 | ) | |
44 | ||
45 | ROOT_URLCONF = 'project.urls' | |
46 | ||
47 | ||
48 | INSTALLED_APPS = ( | |
49 | 'auf.django.skin', | |
50 | 'admin_tools', | |
51 | 'admin_tools.theming', | |
52 | 'admin_tools.menu', | |
53 | 'admin_tools.dashboard', | |
54 | 'django.contrib.auth', | |
55 | 'django.contrib.contenttypes', | |
56 | 'django.contrib.sessions', | |
57 | 'django.contrib.admin', | |
58 | 'south', | |
5d680e84 | 59 | 'project.rh_v1', |
49f9f116 | 60 | 'project.rh', |
5d680e84 | 61 | 'project.dae', |
5e23d90d OL |
62 | ) |
63 | ||
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', | |
e993f3dc | 72 | 'project.context_processors.utilisateur', |
73 | 'project.context_processors.user_is_admin', | |
5e23d90d OL |
74 | ) |
75 | ||
8846b99e OL |
76 | AUTHENTICATION_BACKENDS = ( |
77 | 'auf.django.auth.backends.CascadeBackend', | |
78 | ) | |
5e23d90d OL |
79 | |
80 | TEMPLATE_LOADERS = ( | |
81 | 'django.template.loaders.filesystem.load_template_source', | |
82 | 'django.template.loaders.app_directories.load_template_source', | |
83 | ) | |
84 | ||
85 | TEMPLATE_DIRS = ( | |
86 | os.path.join(os.path.dirname(__file__), "templates"), | |
87 | ) | |
88 | ||
89 | ||
8846b99e | 90 | ADMIN_TOOLS_INDEX_DASHBOARD = 'project.dashboard.CustomIndexDashboard' |