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

Liste des employe de statut 0 et nom Castaing

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

Liste Recherche par nom 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 %} {% for i in insc %} {% endfor %}
Statut
{{ i.statut }}
{% else %} {% endif %} {% endblock %}