{% extends "base.html" %} {% block title %}Interventions — GarageManager{% endblock %} {% block content %}
{% if interventions %} {% for i in interventions %} {% endfor %}
Véhicule Description Date Kilométrage Pièces Total Actions
{{ 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)
{{ "%.2f"|format(i.cout_pieces) }} €
{{ "%.0f"|format(i.cout_main_oeuvre + i.cout_pieces) }} €
Voir Modifier
{% else %}

Aucune intervention pour l'instant

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