{% extends "base.html" %} {% block titre %}Station de Conditionnement{% endblock %} {% block contenu %}

📦 Station de Conditionnement

+ Nouvelle entrée
{% if entrees %}
{% for e in entrees %} {% endfor %}
DateParcelle d'origineProduit Poids entrée (kg)Poids sortie (kg)Écart Type sortieDestination
{{ e.date_entree }} {{ e.parcelle.nom if e.parcelle else "—" }} {{ e.produit }} {{ e.poids_entree_kg }} {{ e.poids_sortie_kg if e.poids_sortie_kg is not none else "—" }} {% if e.ecart_kg is not none %} {{ e.ecart_kg }} kg {% if e.ecart_pourcent is not none %}({{ e.ecart_pourcent }} %){% endif %} {% else %}—{% endif %} {{ e.type_sortie or "—" }} {{ e.destination or "—" }} Modifier
{% else %}

Aucune entrée enregistrée pour le moment.

{% endif %} {% endblock %}