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....

link|improve this question

77% accept rate
+1 Wow, your question and accepted answer just saved me at least an hour of headache. Thanks! – JasonSmith Oct 6 '09 at 10:43
feedback

3 Answers

up vote 3 down vote accepted

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)

link|improve this answer
This was the problem, the Django docs don't seem to make it clear that this is a difference between 0.96 and 1.0. – jamtoday Jul 6 '09 at 3:11
Probably obvious, but for the record and for Google's benefit, this applies to Django 1.1 also. – JasonSmith Oct 6 '09 at 10:43
feedback

The main difference in template inheritance from 0.96 and 1.0 was simply that if you use {% extends %}, it must be the first line in the template.

If that's not the problem, please post the traceback so we can see what's going on.

link|improve this answer
feedback

I still cannot extend base.html and I have the {% extends "base.html" %} in the first line and TEMPLATE_DIRS with the abs path of templates. Anymore hacks needed?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.