Differences in Django Template Inheritance between 0.96 and 1.0?
django, google-app-engine, inheritance, templates
Solution
I dont think you can use relative imports in template inheritance. Thats your problem. You need to specify how it can be found relative to TEMPLATES_DIR(or applicationdirectory/templates)
Problem
Now that Google App Engine natively supports Django 1.0, I updated with the following code: from google.appengine.dist import use_library use_library('django', '1.0') I am now getting template errors relating to template inheritance. For instance, if I have: {% extends "../base.html" %} Referring to a base.html in the parent directory, this worked as expected in Django 0.96, but Django 1.0 is unable to find the referenced template. The Django docs (http://docs.djangoproject.com/en/dev/topics/templates/#template-inheritance) don't mention any difference between versions....