{% extends 'base.html.twig' %} {% block title %}Client index{% endblock %} {% block container_modal %}

Clients index

{% for client in clients %} {% else %} {% endfor %}
Id Prenom Nom Email Telephone Depense Réduction Appliquée Actions
{{ client.id }} {{ client.Prenom }} {{ client.Nom }} {{ client.Email }} {{ client.Telephone }} {{ client.totalDepense }} {% if client.reductions|length > 0 %} {% for reduction in client.reductions %} Réduction de {{ reduction.pourcentage }}% - Valide jusqu'à {{ reduction.DateFin|date('d/m/Y') }}
{% endfor %} {% else %} Aucune réduction {% endif %}
{{ include('clients/_delete_form.html.twig') }}
Modifier
Aucun client trouvé
Créer un nouveau client
{% endblock %}