{% extends "base.html" %} {% block title %}Intervention #{{ intervention.id }} - GarageManager{% endblock %} {% block content %}
Retour au véhicule

{{ intervention.description }}

{{ intervention.immatriculation }} — {{ intervention.marque }} {{ intervention.modele }}

{{ intervention.created_at[:10] }}{% if intervention.technicien %} • {{ intervention.technicien }}{% endif %}

{% if intervention.statut == 'en_attente' %}⏳ En attente {% elif intervention.statut == 'en_cours' %}🔧 En cours {% else %}✅ Terminé{% endif %} Modifier

Main d'œuvre

{{ "%.2f"|format(intervention.cout_main_oeuvre) }} €

Pièces

{{ "%.2f"|format(intervention.cout_pieces) }} €

Total

{{ "%.2f"|format(intervention.cout_main_oeuvre + intervention.cout_pieces) }} €

{% if intervention.notes %}

📋 Notes

{{ intervention.notes }}

{% endif %}

🔩 Pièces utilisées ({{ pieces|length }})

{% if pieces %}
{% for p in pieces %} {% endfor %}
Photo Pièce Référence Marque Qté Prix unit. Total
{% if p.photo %} {{ p.nom }} {% else %}
{% endif %}
{{ p.nom }} {{ p.reference or '-' }} {{ p.marque or '-' }} {{ p.quantite }} {{ "%.2f"|format(p.prix) }} € {{ "%.2f"|format(p.prix * p.quantite) }} €
Total pièces {{ "%.2f"|format(intervention.cout_pieces) }} €
{% else %}
Aucune pièce enregistrée.
{% endif %}
{% endblock %}