{% extends 'base.html' %} {% block title %}Clients{% endblock %} {% block content %}
{% if clients %} {% for c in clients %} {% endfor %}
NomEmailCommandesCA total
{{ c.name }} {{ c.email or '—' }} {{ c.job_count }} {{ c.total_revenue or 0 }} €
{% else %}

Aucun client enregistré.

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