{% extends 'base.html.twig' %} {% block title %}Profil{% endblock %} {% block body %}
| Id | {{ profil.id }} |
|---|---|
| {{ profil.email }} | |
| Roles | {{ profil.roles ? profil.roles|json_encode : '' }} |
| Password | {{ profil.password }} |
| IsVerified | {{ profil.isVerified ? 'Yes' : 'No' }} |
| FirstName | {{ profil.FirstName }} |
| LastName | {{ profil.LastName }} |
| Birthday | {{ profil.birthday ? profil.birthday|date('Y-m-d H:i:s') : '' }} |
| CreationProfil | {{ profil.creationProfil ? profil.creationProfil|date('Y-m-d H:i:s') : '' }} |