Disable the caching template loader again, interesting as may be, it
turns out to be really annoying when developing as it is not clever enough to do cache invalidation, so changing a template and retesting requires restarting the dev server - Legacy-Id: 6929
This commit is contained in:
parent
2dc4454772
commit
b94e110a29
|
@ -106,9 +106,8 @@ SESSION_COOKIE_AGE = 43200 # 12 hours
|
|||
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
|
||||
|
||||
TEMPLATE_LOADERS = (
|
||||
('django.template.loaders.cached.Loader',
|
||||
('django.template.loaders.filesystem.Loader',
|
||||
'django.template.loaders.app_directories.Loader',)),
|
||||
'django.template.loaders.filesystem.Loader',
|
||||
'django.template.loaders.app_directories.Loader',
|
||||
'ietf.dbtemplate.template.Loader',
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue