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.
11 lines
462 B
11 lines
462 B
{% load i18n menu_tags cache %}
|
|
{% for child in children %}
|
|
<li {% if child.selected %}class="active"{% endif %}>
|
|
{% if child.attr.redirect_url == "#title" %}
|
|
<h5>{{ child.get_menu_title }}</h5>
|
|
{% else %}
|
|
<a href="{{ child.get_absolute_url }}"><span>{{ child.get_menu_title }}</span></a>
|
|
{% endif %}
|
|
</li>
|
|
{% if class and forloop.last and not forloop.parentloop %}{% endif %}
|
|
{% endfor %}
|
|
|