I am using virtualenv and I want to know what the TEMPLATE_DIRS in settings.py should be, for example if I make a templates folder in the root of m
TEMPLATE_DIRS
settings.py
Adding this in web/settings.py solved everything for me. Hope it can help you too.
import os BASE_DIR = os.path.dirname(os.path.dirname(__file__)) from os.path import join TEMPLATE_DIRS = ( join(BASE_DIR, 'templates'), )