+1  A: 

If you use {% extends %} in a template, it must be the first template tag in that template. Template inheritance won't work, otherwise.

(source: http://docs.djangoproject.com/en/dev/topics/templates/#id1)

Template inheritance doesn't work the way you are trying to use it. I suggest you read the section linked above.

Ludwik Trammer