{% extends 'base.html.twig' %} {% block title %}Liste des clients{% endblock %} {% block stylesheets %} {{parent()}} {% endblock %} {% block body %} {# Affichage de la barre de navigation de gauche #} {{ render(controller("App\\Controller\\Admin\\AdminController::navbarLeftAdmin")) }}

Liste des clients

{% for customer in customerList %} {# Confirmation Suppression d'un utilisateur #} {% endfor %}
# Nom Prénom Mail Action
1 {{ customer.lastname }} {{ customer.firstname }} {{ customer.email }}
{% endblock %}