horizon/horizon/templates/horizon/common/_region_selector.html

18 lines
587 B
HTML

{% if regions.support %}
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
{{ regions.current.name }}
<span class="fa fa-caret-down"></span>
</a>
<ul id="region_list" class="dropdown-menu dropdown-menu-right">
{% for region in regions.available %}
{% if region.name != regions.current.name %}
<li>
<a class="ajax-modal" href="{% url 'login' %}?region={{ region.endpoint|urlencode }}&is_modal">
{{ region.name }}
</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% endif %}