Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I do html/css by trade, and I have been working on and off django projects as a template designer. I'm currently working on a site that uses Jinja2, which I have been using for about 2 weeks. I just found out through reading the documentation that Jinja2 doesn't support multiple level template inheritance, as in you can't do more than one

{% extends "foo" %}

per rendering. Now I'm pretty sure you can do this in Django, which is powerful because you can specify a base template, specify 3 or 4 templates based on that, and then build the meat of your pages using those base templates. Isn't the point of inheritance so you have more power to abstract so your only really messing with unique code?

In any case I have no idea what to do here. I don't know if there is some way I can do it that will work as well as it could with the Django templates. I'm not exactly an expert at either Django or Jinja(2) but I can provide any information needed.

share|improve this question
Please provide the link that says Jinja2 can't do multiple levels of inheritance. Have you tried to have a template hierarchy? What errors did you get? – S.Lott Dec 29 '09 at 20:21
jinja.pocoo.org/2/documentation/templates#extends - "There is no support for multiple inheritance." – xckpd7 Dec 29 '09 at 20:28
3  
@xckpd7: Multiple inheritance is not the same thing as multiple levels of single inheritance. I see no support for multiple inheritance in Django, either. Please provide some examples to clarify whether you're talking about multiple levels of inheritance or actual multiple inheritance. – S.Lott Dec 29 '09 at 20:30
@S.Lott: all I want to be able to do, is have a base template, have 3 or 4 base templates based on that, and be able to create templates based on those, to provide ultimate flexibility. I was under the impression that you did this by specifying an extends on the sub base templates, and on the individual html templates, which would could as 2 or more {% extends %} tags and therefore violates the part of the documentation that says you can only use one {% extends %} per render. I maybe right, or wrong, but given what I have asked, is there anyway to do this? – xckpd7 Dec 29 '09 at 21:01
@xckpd7: Please do not write extended comments on your own question. Please update the question. Please provide an example of what you think you want to do. Please provide the problem you're actually having. You can have a hierarchy of templates of any depth, so I don't understand what's not working with the solution you're currently trying to make work. Please update the question with sample code. – S.Lott Dec 29 '09 at 21:54

1 Answer

up vote 1 down vote accepted

The way the documentation worded it, it seemed like it didn't support inheritance (n) levels deep.

Unlike Python Jinja does not support multiple inheritance. So you can only have one extends tag called per rendering.

I didn't know it was just a rule saying 1 extends per template.... I now know, with some help from the jinja irc channel.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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