summaryrefslogtreecommitdiff
path: root/templates/chimere/blocks/areas.html
blob: 9dc8e4a446f2ca7c8dcad0d1bf28ccef23d7a4d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{# Modified for AlpesVertes.org -> use Bootsrap dropdown #}
{% load i18n %}
{% if areas and areas.count > 1 %}
    <li id="maps-lnk" class="dropdown">
      {% for area in areas %}
      {% if area_name and area.urn == area_name %}
      <a href="#" data-toggle="dropdown" class="dropdown-toggle"><span class="lbl">{{area.name}}</span><span class="caret"></span></a>
      {% endif %}
      {% endfor %}
      <ul class="dropdown-menu">
      {% if not has_default_area %}
        <li><a href="/">--</a></li>
      {% endif %}
      {% for area in areas %}
        <li {% if area_name and area.urn == area_name %} class="disabled"{% endif %}{% if not area_name and area.default %} class="disabled"{% endif %}><a href="{{area.urn}}">{{area.name}}</a></li>
      {% endfor %}
      </ul>
    </li>
{% endif %}