CACHE_MAX_KEY_LENGTH = 235
-TEMPLATE_LOADERS = [
- ('django.template.loaders.cached.Loader',(
- 'django.template.loaders.filesystem.load_template_source',
- 'django.template.loaders.app_directories.load_template_source',
- 'forum.modules.template_loader.module_templates_loader',
- 'forum.skins.load_template_source',
- )),
-]
-
MIDDLEWARE_CLASSES = [
'django.middleware.csrf.CsrfViewMiddleware',
'django.middleware.csrf.CsrfResponseMiddleware',
# User settings
from settings_local import *
+if DEBUG:
+ TEMPLATE_LOADERS = [
+ 'django.template.loaders.filesystem.load_template_source',
+ 'django.template.loaders.app_directories.load_template_source',
+ 'forum.modules.template_loader.module_templates_loader',
+ 'forum.skins.load_template_source',
+ ]
+else:
+ TEMPLATE_LOADERS = [
+ ('django.template.loaders.cached.Loader',(
+ 'django.template.loaders.filesystem.load_template_source',
+ 'django.template.loaders.app_directories.load_template_source',
+ 'forum.modules.template_loader.module_templates_loader',
+ 'forum.skins.load_template_source',
+ )),
+ ]
+
try:
if len(FORUM_SCRIPT_ALIAS) > 0:
APP_URL = '%s/%s' % (APP_URL, FORUM_SCRIPT_ALIAS[:-1])