Files
mayan-edms/mayan/apps/appearance/templates/navigation/generic_navigation.html
2017-08-11 00:19:57 -04:00

26 lines
969 B
HTML

{% load i18n %}
{% 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 %}