I am having a problem figuring this out and I think there is something wrong with my TEMPLATES dictionary in settings.py.
I have my templates in static/templates/app_name and static is in the same directory as my project source.
So I have nested os.path.join and os.path.dirname as follows: 'DIRS': [ os.path.join(os.path.dirname(BASE_DIR), 'static', 'templates'),],
Any help would be appreciated. All this came about because I was using a separate TEMPLATE_DIRS setting only to find our that was deprecated in 1.8 (I a using 1.10). Also, I was unable to fix the problem hard coding the location (which I don't want to do anyway).
Thanks so much for any help.