On 7/16/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> The thing is, when I take the level2 block out of the ifequal loop,
> everything works fine. So, it looks to me that it can have only so many
> if's around a block statement or something... Is this a bug or am I
> doing something wrong?

I believe the problem in your case is that you're defining a {% block
%} in a for loop. Blocks aren't meant to be filled multiple times by
multiple child templates -- you can only have one block with a given
name in a given template.

BTW, your {% extends %} lines shouldn't be hard-coding the filesystem
location of the templates -- they should contain the location of the
templates *relative* to your template directory (as specified in
TEMPLATE_DIRS).

Adrian

-- 
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to