{% macro data_table_header(entries, form, tools) %}
{% if form or tools %}
{% if form %} {{ form_start(form) }} {{ form_widget(form) }} {{ form_end(form) }} {% endif %}
{% if tools %}
{% 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 %}