{% extends 'base.html.twig' %} {% block title %}Tableau de bord Responsable{% endblock %} {% block body %}

Liste des employé(e)s de statut 0 et nom Castaing

{% if emps is not empty %} {% for emp in emps %} {% endfor %}
Nom Prénom
{{ emp.nom }} {{ emp.prenom }}
{% endif %}

Recherche par nom et prénom

{{ form_start(form) }} {{ form_row(form.nom) }} {{ form_row(form.prenom) }} {{ form_row(form.rechercher) }} {{ form_end(form) }} {% if insc is not empty %}

Résultats de la recherche

{% for i in insc %} {% endfor %}
Statut
{{ i.statut }}
{% endif %} {% endblock %}