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

Dashboard

Vue d'ensemble de votre garage

Véhicules

{{ stats.nb_vehicules }}

Voir tous →

En attente

{{ stats.nb_en_attente }}

Voir →

En cours

{{ stats.nb_en_cours }}

Voir →

Terminées

{{ stats.nb_termine }}

Voir →

Coût pièces

{{ "%.0f"|format(stats.cout_pieces) }} €

Total dépensé

{{ "%.0f"|format(stats.cout_total) }} €

Interventions récentes

+ Nouvelle
{% if recent %}
{% for i in recent %} {% endfor %}
Véhicule Description Statut Coût total
{{ 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 %} {{ "%.0f"|format(i.cout_main_oeuvre + i.cout_pieces) }} €
{% else %}

Aucune intervention pour l'instant

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