{% extends "base.html" %} {% block body %} {% if product.ref %}

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

{% else %}

{{ producer_id }} : Nouveau produit

{% endif %}

{% 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 %}