summaryrefslogtreecommitdiff
path: root/horizon/templates/horizon/_nav_list.html
blob: 2218fc5444b518735655cb376c31ff10964a8adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% load horizon i18n %}

<div>
  <ul class="nav nav-tabs" role="tablist">
    {% for component in components %}
      {% if user|has_permissions:component %}
        <li{% if current.slug == component.slug %} class="active"{% endif %}>
          <a href="{{ component.get_absolute_url }}" tabindex='1'>{{ component.name }}</a>
        </li>
      {% endif %}
    {% endfor %}
  </ul>
</div>