{% extends "::admin.html.twig" %} {% block title %} Liste des Adhérants {% endblock %} {% block entete %} Liste des Adhérants {% endblock %} {% block body %}
{{ include('default/flashBag.html.twig') }} {% for adherant in adherants %} {% endfor %}
Date d'adhésion Nom Prenom Specialite Grade Service Adresse Téléphone Email Action
{{ adherant.dateAdhesion|date('d/m/Y H:i:s') }} {{ adherant.nom }} {{ adherant.prenom }} {{ adherant.specialite }} {{ adherant.grade }} {{ adherant.service }} {{ adherant.adresse }} {{ adherant.telephone }} {{ adherant.email }} {% if(adherant.statutannuaire == 1) %} {% else %} {% endif %} {% if(adherant.statutpaiement != 1) %} {% else %} {% endif %}
{% endblock %}