{% load i18n %}
{% load common_tags %}
{% trans 'Actions' as text_actions %}
{% for menus_link_result in action_menus_link_results %}
{% if not action_menu_disable_labels and action_menus_link_results|length > 1 %}
{{ menus_link_result.menu.label }}
{% endif %}
{% for link_group in menus_link_result.link_groups %}
{% if not navigation_disable_menus_link_group_object_header %}
{% if navigation_object_list %}
{% ifchanged link_group.object %}
{% common_get_object_verbose_name obj=link_group.object as link_group_object_verbose_name %}
{% if link_group_object_verbose_name %}
{{ link_group_object_verbose_name }}
{% endif %}
{% endifchanged %}
{% endif %}
{% endif %}
{% with link_group.links as object_navigation_links %}
{% with 'true' as as_li %}
{% with 'true' as hide_active_anchor %}
{% with 'btn btn-sm navigation-btn-dropdown' as link_classes %}
{% include 'navigation/generic_navigation.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
{% if not forloop.last and link_group %}
{% endif %}
{% endfor %}
{% if not forloop.last and menus_link_result %}
{% endif %}
{% endfor %}