We are setting up a new page structure and want to have overridable blocks within template content that is added to the template with {% include %}, but that does not seem to work. Is this supported?
In particular (working in Django 0.96.1), the following does not work - the 'content' block is not replaced. Our guess is that the templating engine does not process all of the includes before doing the block replacement. Is that right? Thanks, Bob Here are excerpts from the files - we are trying to render mypage.html: base_page.html: -------- <html> ... <body> {% include "includes/header.html" %} {% include "includes/content.html" %} {% include "includes/footer.html" %} </body> </html> -------- includes/content.html: -------- <div content> {% block content %}{% endblock %} </div> -------- mypage.html: -------- {% extends "base_page.html" %} {% block content %}My Content {% endblock %} -------- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---