2👍
✅
The setting is called TEMPLATE_DIRS
, not TEMPLATE_DIR
. It should contain the list of locations where Django would search for templates:
TEMPLATE_DIRS = (
'/Users/chrismeek/Documents/python/skillshare/static/templates',
)
Source:stackexchange.com