diff --git a/plinth/tests/data/django_test_settings.py b/plinth/tests/data/django_test_settings.py index c0299fb8a..1d1ed16b0 100644 --- a/plinth/tests/data/django_test_settings.py +++ b/plinth/tests/data/django_test_settings.py @@ -59,3 +59,9 @@ MIDDLEWARE = ( ROOT_URLCONF = 'plinth.tests.data.urls' SECRET_KEY = 'django_tests_secret_key' + +TEMPLATES = [{ + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'APP_DIRS': True, + 'DIRS': ['plinth/tests/data/templates/'], +}]