86d13968d8
This is unused in Horizon itself and I didn't find any references in plugins. Undefined variable leads to errors during render in a debug mode. Partial-Bug: #1720893 Change-Id: I9de0b24adfeb48f5fe14676aaec6b17b8eb52207
34 lines
911 B
HTML
34 lines
911 B
HTML
{% load context_selection %}
|
|
|
|
<li class="dropdown">
|
|
<a class="dropdown-toggle" role="button" aria-expanded="false" data-toggle="dropdown" href="#">
|
|
{% show_overview %}
|
|
<span class="fa fa-caret-down"></span>
|
|
</a>
|
|
<ul class="dropdown-menu context-selection selection-menu">
|
|
|
|
{% comment %}
|
|
is_multidomain is only available through an assignment tag pulled in through context_selection
|
|
{% endcomment %}
|
|
{% is_multidomain as domain_supported %}
|
|
{% if domain_supported %}
|
|
<li>
|
|
{% show_domain_list %}
|
|
</li>
|
|
{% endif %}
|
|
<li>
|
|
{% show_project_list %}
|
|
</li>
|
|
|
|
{% comment %}
|
|
is_multi_region is only available through an assignment tag pulled in through context_selection
|
|
{% endcomment %}
|
|
{% is_multi_region as multi_region %}
|
|
{% if multi_region %}
|
|
<li>
|
|
{% show_region_list %}
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</li>
|