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

Commentaire {{comment.id}}

{% for user in users %} {% if comment.idUser.id == user.id %} {% endif %} {% endfor %} {% for game in games %} {% if comment.idGame.id == game.id %} {% endif %} {% endfor %}
Id Contenu Nom Jeu
{{ comment.id }} {{ comment.content }}{{ user.name }}{{ game.name }}
Retour liste Modifier {{ include('back/comment/_delete_form.html.twig') }}
{% endblock %}