1 # Django settings for sigmawcs project.
8 # ('Your Name', 'your_email@domain.com'),
13 # Local time zone for this installation. Choices can be found here:
14 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
15 # although not all choices may be available on all operating systems.
16 # If running in a Windows environment this must be set to the same as your
18 TIME_ZONE
= 'America/Montreal'
20 # Language code for this installation. All choices can be found here:
21 # http://www.i18nguy.com/unicode/language-identifiers.html
22 LANGUAGE_CODE
= 'fr-ca'
26 # If you set this to False, Django will make some optimizations so as not
27 # to load the internationalization machinery.
30 # Absolute path to the directory that holds media.
31 # Example: "/home/media/media.lawrence.com/"
34 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
35 # trailing slash if there is a path component (optional in other cases).
36 # Examples: "http://media.lawrence.com", "http://example.com/media/"
38 STATIC_DOC_ROOT
= os
.path
.join(os
.path
.dirname(__file__
), 'media').replace('\\','/')
40 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
42 # Examples: "http://foo.com/media/", "/media/".
43 ADMIN_MEDIA_PREFIX
= '/admin/media/'
45 # Make this unique, and don't share it with anybody.
46 SECRET_KEY
= 'b+w^)l4s6feh+*r(k2i-%a#a+zhir-xfidz#9bou%(f8ma$'
48 # List of callables that know how to import templates from various sources.
50 'django.template.loaders.filesystem.load_template_source',
51 'django.template.loaders.app_directories.load_template_source',
52 # 'django.template.loaders.eggs.load_template_source',
55 MIDDLEWARE_CLASSES
= (
56 'django.middleware.common.CommonMiddleware',
57 'django.contrib.sessions.middleware.SessionMiddleware',
58 'django.contrib.auth.middleware.AuthenticationMiddleware',
61 ROOT_URLCONF
= 'sigmawcs.urls'
64 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
65 # Always use forward slashes, even on Windows.
66 # Don't forget to use absolute paths, not relative paths.
67 os
.path
.join(os
.path
.dirname(__file__
), 'templates').replace('\\','/'),
71 'django.contrib.auth',
72 'django.contrib.contenttypes',
73 'django.contrib.sessions',
74 'django.contrib.sites',