1 # Django settings for auf_zap project.
10 # ('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
= 'Asia/Ho_Chi_Minh'
22 # Language code for this installation. All choices can be found here:
23 # http://www.i18nguy.com/unicode/language-identifiers.html
24 LANGUAGE_CODE
= 'fr-fr'
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/"
34 MEDIA_ROOT
= os
.path
.join(os
.path
.dirname(__file__
), 'media')
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
= '/admin/media/'
46 # List of callables that know how to import templates from various sources.
48 'django.template.loaders.filesystem.load_template_source',
49 'django.template.loaders.app_directories.load_template_source',
50 # 'django.template.loaders.eggs.load_template_source',
53 MIDDLEWARE_CLASSES
= (
54 'django.middleware.common.CommonMiddleware',
55 'django.contrib.sessions.middleware.SessionMiddleware',
56 'django.contrib.auth.middleware.AuthenticationMiddleware',
59 ROOT_URLCONF
= 'auf_zap.urls'
62 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
63 # Always use forward slashes, even on Windows.
64 # Don't forget to use absolute paths, not relative paths.
65 os
.path
.join(os
.path
.dirname(__file__
), 'templates'),
69 'django.contrib.auth',
70 'django.contrib.contenttypes',
71 'django.contrib.sessions',
72 'django.contrib.sites',
73 'django.contrib.admindocs',
74 'django.contrib.admin',