{% extends "base.html.twig" %} {% block title %} {{ parent() }} Liste des produits {% endblock %} {% block content %}

Liste des produits

{% for p in produits %} {% endfor %}
Désignation Prix Type
{{ p.name }} {{ p.price }} {{ p.type.label }}
{% endblock %}