Denière connexion: |
{{ user.lastLogin ? user.lastLogin|date('d/m/Y à H:i:s') : "N'est pas connecté" }} |
Enregistré le: |
{{ user.createdAt|date('d/m/Y à H:i:s') }} |
Modifié le: |
{{ user.updatedAt|date('d/m/Y à H:i:s') }} |
Dernière activité: |
{{ user.lastLogin ? user.lastLogin|date('d/m/Y à H:i:s') : "N'est pas connecté" }} ({{ user.lastLogin|ago }}) |
Verifié: |
|
Rôle: |
{% for role in user.roles %}
{% if role == "ROLE_SUPER_ADMIN" %}
Super administrateur
{% endif %}
{% if role == "ROLE_ADMIN" %}
Administrateur
{% endif %}
{% if role == "ROLE_USER" %}
Utilisateur
{% endif %}
{% endfor %}
|
Status: |
{{ user.enabled ? 'Utulisateur actif' : 'Utulisateur inactif' }}
|