Remove unused 'not_list' template argument
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
This commit is contained in:
parent
8343014ece
commit
86d13968d8
@ -1,8 +1,4 @@
|
||||
{% if not_list %}
|
||||
<div class="dropdown" ng-controller="profilerActionsController as ctrl">
|
||||
{% else %}
|
||||
<li class="dropdown" ng-controller="profilerActionsController as ctrl">
|
||||
{% endif %}
|
||||
<a data-toggle="dropdown" href="#" class="dropdown-toggle" role="button"
|
||||
aria-expanded="false">
|
||||
<span class="fa fa-calculator"></span>
|
||||
@ -14,8 +10,4 @@
|
||||
<span class="fa fa-refresh"></span> Profile Current Page
|
||||
</a></li>
|
||||
</ul>
|
||||
{% if not_list %}
|
||||
</div>
|
||||
{% else %}
|
||||
</li>
|
||||
{% endif %}
|
@ -1,11 +1,7 @@
|
||||
{% load context_selection %}
|
||||
|
||||
{% if not_list %}
|
||||
<div class="dropdown">
|
||||
{% else %}
|
||||
<li class="dropdown">
|
||||
{% endif %}
|
||||
<a class="dropdown-toggle{% if not_list %} btn btn-primary{% endif %}" role="button" aria-expanded="false" data-toggle="dropdown" href="#">
|
||||
<a class="dropdown-toggle" role="button" aria-expanded="false" data-toggle="dropdown" href="#">
|
||||
{% show_overview %}
|
||||
<span class="fa fa-caret-down"></span>
|
||||
</a>
|
||||
@ -34,9 +30,4 @@
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% if not_list %}
|
||||
</div>
|
||||
{% else %}
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
|
@ -1,11 +1,3 @@
|
||||
{% if not_list %}
|
||||
<div class="dropdown">
|
||||
{% else %}
|
||||
<li class="dropdown">
|
||||
{% endif %}
|
||||
{% include "horizon/common/_keystone_provider_selector.html" %}
|
||||
{% if not_list %}
|
||||
</div>
|
||||
{% else %}
|
||||
</li>
|
||||
{% endif %}
|
@ -1,11 +1,3 @@
|
||||
{% if not_list %}
|
||||
<div class="dropdown">
|
||||
{% else %}
|
||||
<li class="dropdown">
|
||||
{% endif %}
|
||||
{% include "horizon/common/_region_selector.html" %}
|
||||
{% if not_list %}
|
||||
</div>
|
||||
{% else %}
|
||||
</li>
|
||||
{% endif %}
|
@ -1,11 +1,7 @@
|
||||
{% load i18n %}
|
||||
{% load themes %}
|
||||
|
||||
{% if not_list %}
|
||||
<div class="dropdown user-menu">
|
||||
{% else %}
|
||||
<li class="dropdown user-menu">
|
||||
{% endif %}
|
||||
<a data-toggle="dropdown" href="#" class="dropdown-toggle" role="button" aria-expanded="false">
|
||||
<span class="fa fa-user"></span>
|
||||
<span class="user-name">{{ request.user.username }}</span>
|
||||
@ -69,8 +65,4 @@
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
{% if not_list %}
|
||||
</div>
|
||||
{% else %}
|
||||
</li>
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user