I have built a menu structure, using the category data model, http://code.djangoproject.com/wiki/CookBookCategoryDataModelPostMagic So, every category is a menu item, and can be a parent of multiple categories. In the admin, everything works fine, but now i'm building my templates. The problem is, that untill level1, everythin is fine, but when level2 is called, it refuses to fill up 'block level2'. So, what I get to see when i visit a level2 url is something like this
- level 1 -level2 -warning, block level2 here -level2 -warning, block level2 here -level 1 -level2 -warning, block level2 here instead of: - level 1 -level2 -level3 - -level2 -level 1 -level2 ========== base.html ========== {% block sidebar %} {% for category in category_list %} {%if not category.parent %} <li><a href = "{{ category.get_absolute_url }}"> {{category.name}} </a></li> {% block level1 %} block level1 here {% endblock %} {% endif %} {% endfor %} {% endblock %} ============= ============= ========== base_level1.html ========== {% extends "/home/bas/django/cmbi/templates/cmbitest/base.html" %} {% block level1 %} {% ifequal category.id category_id %} <ol> {% for category_2 in children_category_list %} <li><a href = "{{ category_2.get_absolute_url }}"> {{category_2.name}} </a></li> {% block level2 %} warning, block level2 here {% endblock %} {% endfor %} </ol> {% endifequal %} {% endblock %} ============ ============ ========== base_level2.html ========== {% extends "/home/bas/django/cmbi/templates/cmbitest/base_level1.html" %} {% block level2 %} {% ifequal category_2.id category2_id %} {% for category_3 in children2_category_list %} <li><a href = "{{ category_3.get_absolute_url }}"> {{category_3.name}} </a></li> {% endfor %} </ol> {% endifequal %} {% endblock %} ============ ============ 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? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---