Nevermind. This one was a trivial one: missing a %

Generally speaking, I think that it would help a lot to get an example
with a block inside a block...

Rom

On Aug 21, 12:07 am, Daniel Roseman <[email protected]> wrote:
> On Aug 21, 12:26 am, Rom <[email protected]> wrote:
>
>
>
>
>
> > Hi,
>
> > I'm building a website using app engine.
>
> > I would like to use multiple inheritance but I'm not allow to put
> > block inside a block.
> > Here is piece of code which should describe the problem well:
>
> > let's assume a .html file called meta_base.html:
>
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
> >         "http://www.w3.org/TR/html4/strict.dtd";>
> > <head>
>
> > {% block meta_title %} {% endblock %}
>
> > </head>
>
> > and now I have the file base.html (which inherits from meta_base).
>
> > {% extends "meta_base.html" %}
>
> >   {% block meta_title %}
> >     <title>
> >       {% block title_content %} {% endblock}
> >     </title>
> >   {% endblock %}
>
> > Now I would like my children html page to look like this:
>
> > {% extends "base.html" %}
>
> > {% block title_content %}
> >   This is the title
> > {% endblock %}
>
> > But it does not work.
>
> > Any very descriptive answer will be greatly appreciated!!
>
> > thanks,
>
> > Rom
>
> How does it not work? What do you see? As far as I can tell, that
> should work - once you've fixed the missing % in endblock in
> base.html.
>
> If you're seeing an error, please post it here.
> --
> DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to