{% extends "base.html" %} {% block title %}Dashboard — GarageManager{% endblock %} {% block content %}
Véhicules
{{ stats.nb_vehicules }}
Voir tous →
Interventions
{{ stats.nb_interventions }}
Voir toutes →
Pièces en stock
{{ stats.nb_pieces_stock }}
Pièces référencées
Total dépensé
{{ "%.0f"|format(stats.cout_total) }} €
Toutes interventions
Interventions récentes Nouvelle
{% if recent %}
{% for i in recent %} {% endfor %}
Véhicule Description Date Kilométrage Pièces Total
{{ i.immatriculation }}
{{ i.marque }} {{ i.modele }}
{{ i.description[:60] }}{% if i.description|length > 60 %}…{% endif %} {{ i.date_intervention or '—' }} {{ (i.kilometrage_intervention|string + ' km') if i.kilometrage_intervention else '—' }} {{ i.nb_pieces }} pièce(s)
{{ "%.0f"|format(i.cout_pieces) }} €
{{ "%.0f"|format(i.cout_main_oeuvre + i.cout_pieces) }} €
{% else %}

Aucune intervention pour l'instant

Créer la première →
{% endif %}
{% endblock %}