[Answered ]-Django templateDoesNotExist at

2👍

You have TEMPLATE_DIR in your settings. It should be TEMPLATE_DIRS.

0👍

I doubt your template directory is inside the static directory: remove that part of TEMPLATE_DIRS.

0👍

In Django 1.8 template_dirs has been deprecated and is now expected to be defined using TEMPLATES[“DIRS”]

The DIRS option
Changed in Django 1.8:
This value used to be defined by the TEMPLATE_DIRS setting.

Reference https://docs.djangoproject.com/en/1.8/ref/templates/api/#loader-types

Posting this as answer, since I wasted few hours on identifying the solution.

Leave a comment