1 # Django settings for dorestad1493 project.
5 PROJECT_DIR = os.path.dirname(__file__)
11 # Server errors get sent here
12 ('Matthijs Kooijman', 'matthijs@stdin.nl'),
17 # Import database settings from a default file (so we can keep those out
19 from dbsettings import *
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
26 TIME_ZONE = 'Europe/Amsterdam'
28 # Language code for this installation. All choices can be found here:
29 # http://www.i18nguy.com/unicode/language-identifiers.html
34 # If you set this to False, Django will make some optimizations so as not
35 # to load the internationalization machinery.
38 # Absolute path to the directory that holds media.
39 # Example: "/home/media/media.lawrence.com/"
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/"
47 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
49 # Examples: "http://foo.com/media/", "/media/".
50 ADMIN_MEDIA_PREFIX = '/admin/media/'
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'
55 # List of callables that know how to import templates from various sources.
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',
62 MIDDLEWARE_CLASSES = (
63 'django.middleware.common.CommonMiddleware',
64 'django.contrib.sessions.middleware.SessionMiddleware',
65 'django.contrib.auth.middleware.AuthenticationMiddleware',
66 'django.middleware.csrf.CsrfViewMiddleware',
67 'debug_toolbar.middleware.DebugToolbarMiddleware',
70 ROOT_URLCONF = 'dorestad-bookings.urls'
73 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
74 # Always use forward slashes, even on Windows.
75 # Don't forget to use absolute paths, not relative paths.
76 os.path.join(PROJECT_DIR, 'templates'),
79 LOGIN_URL = "/reserveren/login/"
80 LOGIN_REDIRECT_URL = "/reserveren/"
83 'django.contrib.auth',
84 'django.contrib.contenttypes',
85 'django.contrib.sessions',
86 'django.contrib.admin',
92 TEMPLATE_CONTEXT_PROCESSORS = (
93 "django.core.context_processors.auth",
94 "django.core.context_processors.debug",
95 "django.core.context_processors.i18n",
96 "django.core.context_processors.media",
97 "django.core.context_processors.request",
100 # Allow authentication against the phpb user accounts
102 AUTHENTICATION_BACKENDS = (
103 'dorestad-bookings.auth.PhpBBBackend',
106 # Import local settings, that are specific to this installation. These
107 # can override any settings specified here.
109 from localsettings import *
113 # vim: set sts=4 sw=4 expandtab: