{% extends "base.html" %} {% block title %}Clients{% endblock %} {% block content %} {% if clients %} {% for c in clients %} {% endfor %}
Nom Ville Email SIRET Actions
{{ c.nom }} {{ c.code_postal }} {{ c.ville }} {{ c.email or "—" }} {{ c.siret or "—" }} Modifier
{% else %}

Aucun client. Créer le premier.

{% endif %} {% endblock %}