{% extends 'base.html.twig' %} {% block title %}Tableau de bord - {{ parent() }} {% endblock %} {% block body %}

Tableau de bord

Nouveau mouvement

Total produits

{{ stats.total_produits }}

Entrées aujourd'hui

{{ stats.mouvements_today.entrees }}

Sorties aujourd'hui

{{ stats.mouvements_today.sorties }}

Stocks faibles

{{ stats.stocks_faibles }}

Mouvements récents
Voir tout
{% if mouvements_recents %}
{% for mouvement in mouvements_recents %} {% endfor %}
Date Produit Type Quantité
{{ mouvement.dateCourte }}
{{ mouvement.heure }}
{{ mouvement.produit.reference }}
{{ mouvement.produit.description }}
{{ mouvement.typeLabel }} {{ mouvement.quantiteFormatee }}
{% else %}

Aucun mouvement récent

{% endif %}
Alertes stocks
{% if produits_stock_faible %} {% for produit in produits_stock_faible %} {% endfor %} {% else %}

Tous les stocks sont suffisants

{% endif %}
{% endblock %}