{% extends 'dashboard_base.html.twig' %} {% block title %}liste clients {% endblock %} {% block body %}

Liste des clients

{% for client in listClients %} {% endfor %}
Nom Prénom Téléphone Email Créer par Action
{{ client.name }} {{ client.firstname }} {{ client.phone }} {{ client.email }} {{ client.user.name ~ ' ' ~ client.user.firstname}}
{% endblock %}