{% extends "base.html" %} {% block title %}{{ vehicule.immatriculation }} - GarageManager{% endblock %} {% block content %}
Retour aux véhicules

{{ vehicule.immatriculation }}

{{ vehicule.marque }} {{ vehicule.modele }}{% if vehicule.annee %} ({{ vehicule.annee }}){% endif %}{% if vehicule.kilometrage %} • {{ vehicule.kilometrage }} km{% endif %}

{% if vehicule.vin %}

VIN : {{ vehicule.vin }}

{% endif %}

📎 Infos & Notes

{% if infos %}
{% for info in infos %}
{% if info.titre %}

{{ info.titre }}

{% endif %} {% if info.type == 'texte' %}

{{ info.contenu }}

{% elif info.type == 'url' %} 🔗 {{ info.contenu }} {% elif info.type == 'image' %} {{ info.titre or 'image' }} {% endif %}

{{ info.created_at[:10] }}

{% endfor %}
{% else %}
Aucune info pour l'instant.
{% endif %}

🔧 Interventions ({{ interventions|length }})

+ Nouvelle intervention
{% if interventions %}
{% for i in interventions %}
{{ i.description }} {% if i.technicien %}

{{ i.technicien }}

{% endif %}

{{ i.created_at[:10] }} • {{ i.nb_pieces }} pièce(s)

{{ "%.0f"|format(i.cout_main_oeuvre + i.cout_pieces) }} € {% if i.statut == 'en_attente' %}En attente {% elif i.statut == 'en_cours' %}En cours {% else %}Terminé{% endif %}
{% endfor %}
{% else %}
Aucune intervention.
Créer la première →
{% endif %}
{% endblock %}