{% extends 'frontend/carto.html.twig' %} {% import 'frontend/macro.html.twig' as macro %} {% block carto %}

La liste simple... et rêvolutionnaire !

{{ form_start(form, { 'attr' : { 'class': 'form-search' }}) }}
{{ form_errors(form) }} {{ form_widget(form.search, {'attr': {'class': 'input-search'}}) }}
{{ macro.dropdown_search(form.category) }}
{{ macro.dropdown_search(form.thematic) }}
{{ macro.dropdown_search(form.territory) }}
{{ form_row(form.search_button, { 'label': 'Rechercher' }) }}
{{ form_widget(form.export_excel, { 'label': 'Exporter au format Excel' }) }} {{ form_widget(form.export_pdf, { 'label': 'Exporter au format PDF' }) }}
{{ form_end(form) }} {% if resultArray %} {% for result in resultArray %} {% endfor %} {% endif %}
{% endblock %}