1👍
✅
TEMPLATE_DIRS
is already a list, so it makes no sense to wrap that again in the list, you should define the TEMPLATES
setting as:
TEMPLATES = [
{
# …,
'DIRS': TEMPLATE_DIRS,
# …
}
]
Source:stackexchange.com