[Answer]-Template error in django for openshift

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

Leave a comment