You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
527 B
12 lines
527 B
{% load menu_tags %}
|
|
|
|
{% for child in children %}
|
|
<li class="child{% if child.selected %} selected{% endif %}{% if child.ancestor %} ancestor{% endif %}{% if child.sibling %} sibling{% endif %}{% if child.descendant %} descendant{% endif %}">
|
|
<a href="{{ child.attr.redirect_url|default:child.get_absolute_url }}">111{{ child.get_menu_title }}</a>
|
|
{% if child.children %}
|
|
<ul>
|
|
{% show_menu from_level to_level extra_inactive extra_active template "" "" child %}
|
|
</ul>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
|