{% extends 'base.html.twig' %} {% block title %}Profil index{% endblock %} {% block body %} {% if is_granted('ROLE_ADMIN') %}

Profil index

{# #} {% for profil in profils %} {# #} {% else %} {% endfor %}
Id Email RolesPasswordIsVerified FirstName LastName Birthday CreationProfil actions
{{ profil.id }} {{ profil.email }} {{ profil.roles ? profil.roles|json_encode : '' }}{{ profil.password }}{{ profil.isVerified ? 'Yes' : 'No' }} {{ profil.FirstName }} {{ profil.LastName }} {{ profil.birthday ? profil.birthday|date('Y-m-d') : '' }} {{ profil.creationProfil ? profil.creationProfil|date('Y-m-d H:i:s') : '' }} show edit
no records found
{# Create new #}
{% endif %} {% endblock %}