0👍
I doubt your template directory is inside the static directory: remove that part of TEMPLATE_DIRS.
- [Answered ]-How to find objects created within given date range?
- [Answered ]-Django – set expiry for a certain key in session
- [Answered ]-Using ManyToManyFields() with Django
- [Answered ]-Request.POST used by ModelForm with prefix not working with client.post in unit test
- [Answered ]-Getting ImportError: No module named azure.storage.blob when doing python manage.py syncdb
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.
- [Answered ]-Heroku + Django migrate command doesn’t create any table
- [Answered ]-Update / Save model date value directly from template?
- [Answered ]-What is correct way to send mail asynchronously in python/django?
- [Answered ]-Trying to exit out of a function in Django in order to render correct html page name
Source:stackexchange.com