From e3b9ec6181cd2ad092f909c9f72366e22d90cb7c Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Mon, 21 Mar 2022 21:04:41 +0100 Subject: [PATCH] Overdue fix. --- src/wolnelektury/settings/basic.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/wolnelektury/settings/basic.py b/src/wolnelektury/settings/basic.py index 47a2388c1..c640d3144 100644 --- a/src/wolnelektury/settings/basic.py +++ b/src/wolnelektury/settings/basic.py @@ -40,17 +40,12 @@ SITE_ID = 1 TEMPLATES = [{ 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'APP_DIRS': True, 'DIRS': ( path.join(PROJECT_DIR, 'templates'), # Duplicate, because of Machina<1 weird configuration. MACHINA_MAIN_TEMPLATE_DIR, ), 'OPTIONS': { - 'loaders': ( - ('django.template.loaders.cached.Loader', ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', - )), - ), 'context_processors': ( 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', -- 2.20.1