Unable to set up Jinja2 with Django -
i've installed django 1.9.7, , have pythons 3.4.3 , 2.7.10 on ubuntu. these steps i've followed: made new project django-admin startproject testproject cd testproject/testproject made app within project django-admin startapp testapp made directory templates in app mkdir testapp/templates , added basic index.html template in there edited settings.py change template backend django.template.backends.jinja2.jinja2 , editing line 57 of default settings file, , add testproject.testapp installed_apps ; templates section therefore this: templates = [ { 'backend': 'django.template.backends.jinja2.jinja2', 'dirs': [], 'app_dirs': true, 'options': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth...