Skip to content Skip to sidebar Skip to footer

Django Can't Find App Templates

I'm working through the official django 1.7 tutorial found here. Everything is going smoothly except django can't find the templates for apps. It finds templates that I put under w

Solution 1:

Remove the first / slash from the template name. It should be:

template = loader.get_template('polls/index.html')

Post a Comment for "Django Can't Find App Templates"