This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
compte-agglo-montpellier/compte_agglo_montpellier/templates/menu/menu.html

7 lines
489 B
HTML

{% load menu_tags %}{% for child in children %}<li
class="{% 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 }}">{{ 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 %}