{% set title, page_active, page_categorie = 'Aucun titre', '', '' %} {% extends 'base_admin.html.twig' %} {% block title %}Apprenant index{% endblock %} {% block body %}

Apprenant index

{% for apprenant in apprenants %} {% else %} {% endfor %}
Id Nom Prenom Sexe Date_naissance Lieu_naissance Adresse Contact Email Pere Pere_profession Pere_contact Mere Mere_profession Mere_contact Tuteur Tuteur_profession Tuteur_contact Etablissement_origine Handicap Compte_facebook Active Created_at Updated_at actions
{{ apprenant.id }} {{ apprenant.nom }} {{ apprenant.prenom }} {{ apprenant.sexe }} {{ apprenant.dateNaissance ? apprenant.dateNaissance|date('Y-m-d') : '' }} {{ apprenant.lieuNaissance }} {{ apprenant.adresse }} {{ apprenant.contact }} {{ apprenant.email }} {{ apprenant.pere }} {{ apprenant.pereProfession }} {{ apprenant.pereContact }} {{ apprenant.mere }} {{ apprenant.mereProfession }} {{ apprenant.mereContact }} {{ apprenant.tuteur }} {{ apprenant.tuteurProfession }} {{ apprenant.tuteurContact }} {{ apprenant.etablissementOrigine }} {{ apprenant.handicap ? 'Yes' : 'No' }} {{ apprenant.compteFacebook }} {{ apprenant.active ? 'Yes' : 'No' }} {{ apprenant.createdAt ? apprenant.createdAt|date('Y-m-d H:i:s') : '' }} {{ apprenant.updatedAt ? apprenant.updatedAt|date('Y-m-d H:i:s') : '' }} show edit
no records found
Create new {% endblock %}