tickets: Expose the ticket price to the bookingform template.
[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 # Also use localization (formatting of numbers and dates)
38 USE_L10N = True
39
40 # Absolute path to the directory that holds media.
41 # Example: "/home/media/media.lawrence.com/"
42 MEDIA_ROOT = ''
43
44 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
45 # trailing slash if there is a path component (optional in other cases).
46 # Examples: "http://media.lawrence.com", "http://example.com/media/"
47 MEDIA_URL = ''
48
49 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
50 # trailing slash.
51 # Examples: "http://foo.com/media/", "/media/".
52 ADMIN_MEDIA_PREFIX = '/admin/media/'
53
54 # Make this unique, and don't share it with anybody.
55 SECRET_KEY = 'dd1=%ckg%xhi((eq)^@ri0o62trw-j!3(4bed9#u5)$_h&a!)0'
56
57 # List of callables that know how to import templates from various sources.
58 TEMPLATE_LOADERS = (
59     'django.template.loaders.filesystem.load_template_source',
60     'django.template.loaders.app_directories.load_template_source',
61 #     'django.template.loaders.eggs.load_template_source',
62 )
63
64 MIDDLEWARE_CLASSES = (
65     'django.middleware.common.CommonMiddleware',
66     'django.contrib.sessions.middleware.SessionMiddleware',
67     'django.contrib.auth.middleware.AuthenticationMiddleware',
68     'django.middleware.csrf.CsrfViewMiddleware',
69     'debug_toolbar.middleware.DebugToolbarMiddleware',
70 )
71
72 ROOT_URLCONF = 'dorestad-bookings.urls'
73
74 TEMPLATE_DIRS = (
75     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
76     # Always use forward slashes, even on Windows.
77     # Don't forget to use absolute paths, not relative paths.
78     os.path.join(PROJECT_DIR, 'templates'),
79 )
80
81 LOGIN_URL = "/reserveren/login/"
82 LOGIN_REDIRECT_URL = "/reserveren/"
83
84 INSTALLED_APPS = (
85     'django.contrib.auth',
86     'django.contrib.contenttypes',
87     'django.contrib.sessions',
88     'django.contrib.admin',
89     'tickets',
90     'debug_toolbar',
91     'south',
92 )
93
94 TEMPLATE_CONTEXT_PROCESSORS = (
95     "django.core.context_processors.auth",
96     "django.core.context_processors.debug",
97     "django.core.context_processors.i18n",
98     "django.core.context_processors.media",
99     "django.core.context_processors.request",
100 )
101
102 # Allow authentication against the phpb user accounts
103
104 AUTHENTICATION_BACKENDS = (
105     'dorestad-bookings.auth.PhpBBBackend',
106 )
107
108 # Import local settings, that are specific to this installation. These
109 # can override any settings specified here.
110 try:
111     from localsettings import *
112 except ImportError:
113     pass
114
115 # vim: set sts=4 sw=4 expandtab: