From: Guillaume Pellerin Date: Mon, 7 Nov 2016 19:29:03 +0000 (+0100) Subject: Disable template cache for the moment X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=0958dcc767e6f1af89db36b263ef6b818cedb53c;p=mezzo.git Disable template cache for the moment --- diff --git a/app/settings.py b/app/settings.py index e4891ac2..28c75c33 100644 --- a/app/settings.py +++ b/app/settings.py @@ -272,12 +272,13 @@ TEMPLATES = [{'APP_DIRS': False, 'django.core.context_processors.tz', 'mezzanine.conf.context_processors.settings', 'mezzanine.pages.context_processors.page', - 'organization.core.context_processors.static'), - 'loaders': [ - ('django.template.loaders.cached.Loader', [ - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', - ]),], + 'organization.core.context_processors.static', + ), + # 'loaders': [ + # ('django.template.loaders.cached.Loader', [ + # 'django.template.loaders.filesystem.Loader', + # 'django.template.loaders.app_directories.Loader', + # ]),], }, }]