summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/blocks/action_list.html
blob: 50a6554c439a992466e0a47fab1909364acb6306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<li class="nav-item dropdown">
    <a class="nav-link dropdown-toggle"
       data-toggle="dropdown" href="#" role="button" aria-haspopup="true"
       aria-expanded="false">{{section_label}}</a>

    <div class="dropdown-menu">
        {% for label, url, has_children in sections %}
        <a class="dropdown-item{% if has_children%} font-weight-bold{%endif%}" href="{{url}}">
            {{ label }}
        </a>{% endfor %}
    </div>
</li>