{% macro data_table_header(entries, form, tools, toolsRight) %}
{% if form or tools or toolsRight %}
{% if tools %}
{% for icon,url in tools %} {% endfor %}
{% endif %} {% if form %}
{{ form_start(form) }} {{ form_widget(form) }} {{ form_end(form) }}
{% endif %} {% if toolsRight %}
{% for icon,url in tools %} {% endfor %}
{% endif %}
{% endif %}
{% for title, class in entries %} {{ title|trans }} {% endfor %} {% endmacro %} {% macro data_table_footer(entries, route) %}
{#
{#
{{ 'datatables.entry_counter'|trans({'%from%': '1', '%to%': '10', '%total%': entries.count}) }}
# }
{{ pagerfanta(entries, 'twitter_bootstrap3_translated', { routeName: route }) }}
#}
{% endmacro %}