{% extends "base.html" %} {% block title %}Interventions - GarageManager{% endblock %} {% block content %}
{{ interventions|length }} intervention(s)
| Véhicule | Description | Statut | Pièces | Total | Date | Actions |
|---|---|---|---|---|---|---|
|
{{ i.immatriculation }} {{ i.marque }} {{ i.modele }} |
{{ i.description[:60] }}{% if i.description|length > 60 %}...{% endif %} | {% if i.statut == 'en_attente' %}En attente {% elif i.statut == 'en_cours' %}En cours {% else %}Terminé{% endif %} | {{ "%.2f"|format(i.cout_pieces) }} € | {{ "%.0f"|format(i.cout_main_oeuvre + i.cout_pieces) }} € | {{ i.created_at[:10] }} | Voir Modifier |
Aucune intervention trouvée
Créer la première →