summaryrefslogtreecommitdiff
path: root/django-openstack/django_openstack/templates/django_openstack/common/_sidebar_module.html
blob: 661108dc717c0b1a61c1f2711ef4db5883938837 (plain)
1
2
3
4
5
6
7
8
9
10
{% for module in modules %}
  <h3>{{module.title}}</h3>

  <ul class="sub_nav">
    {% for link in module.links %}
      <li><a {% if request.get_full_path == link.url %} class="active" {% endif %} href="{{link.url}}">{{link.text}}</a></li>
    {% endfor %}
  </ul>
{% endfor %}