Re: Templates inheritance and the passing of variables

2007-04-04 Thread Malcolm Tredinnick
On Thu, 2007-04-05 at 00:05 +, Roboto wrote: > Hey guys, just a quick question here: > > I have a base template called base.html. Essentially all it holds are > blocks to be filled in by child templates and it contains a menu which > is common to all templates but it is also in block in

Re: Templates inheritance and the passing of variables

2007-04-04 Thread akonsu
hello, {{block.super}} renders the block contents of the parent, but this might not be enough for what you want. konstantin On Apr 4, 8:05 pm, "Roboto" <[EMAIL PROTECTED]> wrote: > Hey guys, just a quick question here: > > I have a base template called base.html. Essentially all it holds are

Templates inheritance and the passing of variables

2007-04-04 Thread Roboto
Hey guys, just a quick question here: I have a base template called base.html. Essentially all it holds are blocks to be filled in by child templates and it contains a menu which is common to all templates but it is also in block in case I ever needed to override it in the future So I have a