{% extends "base.html.twig" %} {% block title %}Catalogue {% endblock %} {% block h1 %}Catalogue {% endblock %} {# {% block body %} y {% endblock %} #} {# {% if condition %} {% else %} {% endif %} #} {% block body %}
{{ form_start(formFilter) }} {{form_row(formFilter.recherche)}}
{{form_row(formFilter.min)}}
{{form_row(formFilter.max)}}
{{form_row(formFilter.categories)}}
{#
{{form_row(formFilter.marques)}}
#}
{{form_row(formFilter.matieres)}}
{{form_row(formFilter.order)}} {{form_end(formFilter)}}
{% if oeuvres %}
{% for oeuvre in oeuvres %}

{{oeuvre.titre}}

{% endfor %}
{% else %}

Aucun produit pour le moment

{% endif %} {% endblock %}