{% extends "base.html" %} {% block title %}Clients — GarageManager{% endblock %} {% block content %}
{% if q %} {% endif %}
{% if clients %} {% for c in clients %} {% endfor %}
Nom Téléphone Email Véhicules Actions
{{ c.nom }} {{ c.prenom }} {{ c.telephone or '—' }} {{ c.email or '—' }} {{ c.nb_vehicules }}
Voir Modifier
{% else %}

Aucun client trouvé

Ajouter le premier →
{% endif %}
{% endblock %}