{% extends "base.html" %} {% block titre %}Station de Conditionnement{% endblock %} {% block contenu %}
| Date | Parcelle d'origine | Produit | Poids entrée (kg) | Poids sortie (kg) | Écart | Type sortie | Destination | |
|---|---|---|---|---|---|---|---|---|
| {{ 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 |
Aucune entrée enregistrée pour le moment.
{% endif %} {% endblock %}