horizon/openstack_dashboard/templates/context_selection/_domain_list.html
Thai Tran 7dd2aa8b4a Context selection for project and region
Providing the mechanism to easily switch between projects and regions.

Only shows domain info if OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT is set
to True in settings.

Will add domain switching for v3 once support for it is complete.
Will add advance filtering rules in follow up patch.

Co-Authored-By: David Lyle <david.lyle@hp.com>

Implements: blueprint context-selection

Change-Id: Ie6e81eebe822ab2394b07345d148a1c06a33a25f
2014-09-02 09:38:27 -06:00

13 lines
247 B
HTML

{% load i18n %}
{% if domain_supported %}
<ul>
<li class="dropdown-header">{% trans "Domains:" %}</li>
<li>
<a class="disabled">
{{ domain_name }}
<span class="glyphicon glyphicon-ok"></span>
</a>
</li>
</ul>
{% endif %}