On Tue, Jan 13, 2009 at 12:31 PM, dr.mob...@googlemail.com < dr.mob...@googlemail.com> wrote:
> > Hello, > I'm new to DJango, but I'm already lovin' it. I have a few questions > however - can someone offer any guidance, please? > > Is the possible following in a template: > { inherits ... } > I take it you mean extends, not inherits, here. > > {% for item in items %} > > {% block A %} > some text here > {% endblock A %} > > {% block B %} > some other text here > {% endblock %} > > {% endfor %} > > without there being another block wrapping the for loop? No. > I've tried it > and I cannot get it working, but I think I remember some an example > doing so... I guess the general point of my question is - do all > constructs have to be wrapped in a block? > Yes, in a template that is extending another, everything has to be in a block. From http://docs.djangoproject.com/en/dev/topics/templates/#id1: The {% extends %} tag is the key here. It tells the template engine that this template "extends" another template. When the template system evaluates this template, first it locates the parent -- in this case, "base.html". At that point, the template engine will notice the three {% block %} tags in base.html and replace those blocks with the contents of the child template. Thus, the only thing relevant in a child template is text contained in {% block %} elements that were previously defined in a parent template. There isn't any place for text outside of such {% block %} tags in a child template to go -- where would it be logically placed in a parent template? I'll leave the block.super question for someone else to answer, as it's not immediately obvious to me what you are asking and I've run out of time right now. Karen --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---