1 # Django settings for carto project.
8 # ('Your Name', 'your_email@domain.com'),
15 # Local time zone for this installation. Choices can be found here:
16 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
17 # although not all choices may be available on all operating systems.
18 # If running in a Windows environment this must be set to the same as your
20 TIME_ZONE
= 'America/Chicago'
22 # Language code for this installation. All choices can be found here:
23 # http://www.i18nguy.com/unicode/language-identifiers.html
24 LANGUAGE_CODE
= 'en-us'
28 # If you set this to False, Django will make some optimizations so as not
29 # to load the internationalization machinery.
32 # Absolute path to the directory that holds media.
33 # Example: "/home/media/media.lawrence.com/"
36 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
37 # trailing slash if there is a path component (optional in other cases).
38 # Examples: "http://media.lawrence.com", "http://example.com/media/"
41 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
43 # Examples: "http://foo.com/media/", "/media/".
44 ADMIN_MEDIA_PREFIX
= '/media/'
46 # Make this unique, and don't share it with anybody.
47 ##SECRET_KEY = 'q31jzx260tn8b(gzu2xkft))eiz$a@pp_k^0m9)k$gww(wxin@'
49 # List of callables that know how to import templates from various sources.
51 'django.template.loaders.filesystem.load_template_source',
52 'django.template.loaders.app_directories.load_template_source',
53 # 'django.template.loaders.eggs.load_template_source',
56 MIDDLEWARE_CLASSES
= (
57 'django.middleware.common.CommonMiddleware',
58 'django.contrib.sessions.middleware.SessionMiddleware',
59 'django.contrib.auth.middleware.AuthenticationMiddleware',
62 ROOT_URLCONF
= 'bao_cartographie.urls'
65 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
66 # Always use forward slashes, even on Windows.
67 # Don't forget to use absolute paths, not relative paths.
71 'django.contrib.auth',
72 'django.contrib.contenttypes',
73 'django.contrib.sessions',
74 'django.contrib.sites',
75 'django.contrib.admin',