1👍
✅
move out your templates from /static/
in the parent directory, you don’t want them moved to wsgi/static
when doing collectstatic
, then add this setting:
TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates'),
)
👤DRC
Source:stackexchange.com