Add the new list facet navigation menu. Used to provide facets to the list subtemplate. The list facet allows separating the object action links from the object navigation links. The list facet links are displayed before the list object links on the list subtemplate. In the object views, the list facet menu behaves exactly the same as the form facet menu. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
28 lines
1004 B
HTML
28 lines
1004 B
HTML
{% load i18n %}
|
|
|
|
{% spaceless %}
|
|
{% if as_dropdown %}
|
|
<div class="dropdown text-center">
|
|
<button class="btn btn-default dropdown-toggle btn-danger btn-sm" type="button" id="dropdownMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
{% trans 'Actions' %}
|
|
<span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenu">
|
|
{% for link in object_navigation_links %}
|
|
{% with 'true' as as_li %}
|
|
{% with ' ' as li_class_active %}
|
|
{% with 'btn-sm' as link_classes %}
|
|
{% include 'navigation/generic_subnavigation.html' %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% else %}
|
|
{% for link in object_navigation_links %}
|
|
{% include 'navigation/generic_subnavigation.html' %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endspaceless %}
|