{% extends 'Backend/_layout.html.twig' %} {% block page_title %}

Panélistes liste des panélistes

{% endblock %} {% block stylesheet %} {% endblock %} {% block content %}
{% for entity in userIndex %} {% endfor %}
ID Panéliste {{ 'title'}} {{ 'firstname'}} {{ 'name'}} {{ 'birthdate'}} {{ 'email'}} {{ 'state' }} Actions
{{ entity.idPaneliste }} {{ entity.title }} {{ entity.lastname }} {{ entity.firstname }} {{ entity.birthdate | date('d/m/Y') }} {{ entity.email }} {{ entity.enabled ? 'Activé' : 'Désactivé' }} afficher {# éditer #}
{% endblock %} {% block javascript %} {% endblock %}