{% extends "base.html" %} {% block body %}

Supprimer le produit « {{ product.name }} »


{% if products %}

Produits

{% for product in products %} {% endfor %}
Produit Prix Unité Description Packaging Rupture ?
{{ product.name }} {{ product.price }}€ {{ product.unit }} {{ product.description }} {% if product.packing %}{{ product.packing }}{% endif %} {% if product.rupture %}RUPTURE !!{% endif %} éditer
{% endif %}
{% endblock body %}