{% macro toolbar(form, tools, toolsRight) %}
{% if tools %}
{% for icon,url in tools %} {% endfor %}
{% endif %} {% if form %}
{% form_theme form 'form/toolbar-theme.html.twig' %} {{ form_start(form) }} {{ form_widget(form) }} {{ form_end(form) }}
{% endif %} {% if toolsRight %}
{% for icon,url in tools %} {% endfor %}
{% endif %}
{% endmacro %}