diff --git a/test_project/settings.py b/test_project/settings.py index 0607363..a0428ce 100644 --- a/test_project/settings.py +++ b/test_project/settings.py @@ -27,6 +27,16 @@ TEMPLATE_LOADERS = ( 'django.template.loaders.app_directories.Loader', ) +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'APP_DIRS': True, + 'OPTIONS': { + 'builtins': ['overextends.templatetags.overextends_tags'], + } + }, +] + INSTALLED_APPS = ( 'overextends', )