I am not able to render any html pages in Django 1.7. My \'index.html\' is in \'project/seatalloc/templates/index.html\' and my view.py in proje
project/seatalloc/templates/index.html
proje
Try like this,
import os BASE_DIR = os.path.dirname(os.path.dirname(__file__)) TEMPLATE_DIRS = ( os.path.join(BASE_DIR, 'templates/'), )