{% extends 'base.html.twig' %} {% block title %}Commentaire index{% endblock %} {% block body %}

Vos Messages

{% if is_granted('ROLE_ADMIN') %} {% endif %} {% for commentaire in commentaires %} {% if is_granted('ROLE_ADMIN') %} {# Vérifier si le commentaire a un conge et si le conge a un user avant d'accéder aux propriétés du user #} {% if commentaire.conge is not null and commentaire.conge.user is not null %} {% else %} {% endif %} {% endif %} {% else %} {% endfor %}
ReponseUser ReponseAdminEmail Prenom NomActions
{{ commentaire.reponseUser }} {{ commentaire.reponseAdmin }}{{ commentaire.conge.user.email }} {{ commentaire.conge.user.prenom }} {{ commentaire.conge.user.nom }}Utilisateur non spécifié show repondre au dernier message
no records found
{% endblock %}