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

<div class='clearfix'>
  <ul class="nav nav-tabs">
    {% 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>