{% extends 'admin/base.html.twig' %}
{% block title %}Administration des commentaires{% endblock %}
{% block body %}
Gestion des commentaires
Nom
Email
Contenu
Date d'ajout
Actions
{% for article in articles %}
{% set showCommentaire = path('article_edited_show',{'slug': article.slug}) %}
{% for commentaire in article.commentaires %}
{{ commentaire.nom }}
{{ commentaire.email }}
{{ commentaire.contenu | raw }}
Le {{ commentaire.createdAt | date('d/m/y') }} à {{ commentaire.createdAt | date('H:i') }}
{% endfor %}
{% endfor %}
{% for article in articles %}
{% for commentaire in article.commentaires %}
{% set removeCommentaire = path('commentaire_delete',{'id': commentaire.id}) %}