Merges 55e9b2263c from versions/next
with code from GitLab issue #594 and GitLab merge request !55.
Thanks to Jakob Haufe (@sur5r) and Jesaja Everling (@jeverling)
for much of the research and code updates.
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
15 lines
351 B
Python
15 lines
351 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from . import * # NOQA
|
|
|
|
CELERY_TASK_ALWAYS_EAGER = False
|
|
|
|
TEMPLATES[0]['OPTIONS']['loaders'] = (
|
|
(
|
|
'django.template.loaders.cached.Loader', (
|
|
'django.template.loaders.filesystem.Loader',
|
|
'django.template.loaders.app_directories.Loader',
|
|
)
|
|
),
|
|
)
|