I get this error when I run a django app (dpaste)
Template error
In template c:\python\projects\mycms\dpaste\templates\dpaste\base.html, error at line 1
Template u'base.html' cannot be extended, because it doesn't exist
1 {% extends "base.html" %}
But the “base.html” do exist in the template directory and it has this one line in it:
{% extends "base.html" %}
What is wrong with that?
Your base.html template cannot extend itself. The problem lies there. Remove that line and replace it with valid html or other Django template tags (or extend some other template).