[Answered ]-Enabling overriding of app template in django?

2👍

You need to put filesystem loader before app_directories loader in your TEMPLATE_LOADERS setting.

TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.load_template_source',
    'django.template.loaders.app_directories.load_template_source'
)

The order of TEMPLATE_LOADERS matter.

👤muhuk

Leave a comment