{% extends "base.html" %} {% block title %}Dashboard — GarageManager{% endblock %} {% block content %}
Vue d'ensemble de votre garage
| 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) }} € |
Aucune intervention pour l'instant
Créer la première →