+
{% import "Froxlor/table/table.html.twig" as table %}
{{ table.table(listing) }}
- {% if add_link is iterable or (entity_info is defined and entity_info is not empty) %}
+ {% if actions_links is iterable or (entity_info is defined and entity_info is not empty) %}
- {% if add_link is iterable %}
-
-
- {{ add_link.label }}
+ {% if actions_links is iterable %}
+ {% for link in actions_links %}
+
+
+ {{ link.label }}
+ {% endfor %}
{% endif %}
{% if entity_info is defined and entity_info is not empty %}
-
+
{{ entity_info|raw }}
{% endif %}