tickets: Use RequestContext.
[matthijs/projects/dorestad-bookings.git] / settings.py
1 # Django settings for dorestad1493 project.
2
3 import os
4
5 PROJECT_DIR = os.path.dirname(__file__)
6
7 DEBUG = False
8 TEMPLATE_DEBUG = DEBUG
9
10 ADMINS = (
11     # Server errors get sent here
12     ('Matthijs Kooijman', 'matthijs@stdin.nl'),
13 )
14
15 MANAGERS = ADMINS
16
17 # Import database settings from a default file (so we can keep those out
18 # of git).
19 from dbsettings import *
20
21 # Local time zone for this installation. Choices can be found here:
22 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
23 # although not all choices may be available on all operating systems.
24 # If running in a Windows environment this must be set to the same as your
25 # system time zone.
26 TIME_ZONE = 'Europe/Amsterdam'
27
28 # Language code for this installation. All choices can be found here:
29 # http://www.i18nguy.com/unicode/language-identifiers.html
30 LANGUAGE_CODE = 'nl'
31
32 SITE_ID = 1
33
34 # If you set this to False, Django will make some optimizations so as not
35 # to load the internationalization machinery.
36 USE_I18N = True
37
38 # Absolute path to the directory that holds media.
39 # Example: "/home/media/media.lawrence.com/"
40 MEDIA_ROOT = ''
41
42 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
43 # trailing slash if there is a path component (optional in other cases).
44 # Examples: "http://media.lawrence.com", "http://example.com/media/"
45 MEDIA_URL = ''
46
47 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
48 # trailing slash.
49 # Examples: "http://foo.com/media/", "/media/".
50 ADMIN_MEDIA_PREFIX = '/media/'
51
52 # Make this unique, and don't share it with anybody.
53 SECRET_KEY = 'dd1=%ckg%xhi((eq)^@ri0o62trw-j!3(4bed9#u5)$_h&a!)0'
54
55 # List of callables that know how to import templates from various sources.
56 TEMPLATE_LOADERS = (
57     'django.template.loaders.filesystem.load_template_source',
58     'django.template.loaders.app_directories.load_template_source',
59 #     'django.template.loaders.eggs.load_template_source',
60 )
61
62 MIDDLEWARE_CLASSES = (
63     'django.middleware.common.CommonMiddleware',
64     'django.contrib.sessions.middleware.SessionMiddleware',
65     'django.contrib.auth.middleware.AuthenticationMiddleware',
66 )
67
68 ROOT_URLCONF = 'dorestad-bookings.urls'
69
70 TEMPLATE_DIRS = (
71     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
72     # Always use forward slashes, even on Windows.
73     # Don't forget to use absolute paths, not relative paths.
74     os.path.join(PROJECT_DIR, 'templates'),
75 )
76
77 LOGIN_URL = "/reserveren/login/"
78 LOGIN_REDIRECT_URL = "/reserveren/"
79
80 INSTALLED_APPS = (
81     'django.contrib.auth',
82     'tickets',
83 )
84
85 # Allow authentication against the phpb user accounts
86
87 AUTHENTICATION_BACKENDS = (
88     'dorestad-bookings.auth.PhpBBBackend',
89 )
90
91 # Import local settings, that are specific to this installation. These
92 # can override any settings specified here.
93 try:
94     from localsettings import *
95 except ImportError:
96     pass
97
98 # vim: set sts=4 sw=4 expandtab: