{% extends "base.html" %} {% block title %}Interventions - GarageManager{% endblock %} {% block content %}

Interventions

{{ interventions|length }} intervention(s)

Nouvelle intervention
Toutes ⏳ En attente 🔧 En cours ✅ Terminées
{% if interventions %} {% for i in interventions %} {% endfor %}
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
{% else %}

Aucune intervention trouvée

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