{{ comment.author }}
{{ comment.createdAt ? comment.createdAt|date('d/m/Y H:i:s') : '' }}{{ comment.content }}
{% extends 'base.html.twig' %}
{% block title %}Détail de l'article : {{ article.title }}{% endblock %}
{% block body %}
{{ article.title }}
retour a la liste des articles
{% if app.user %}
You are logged in as
{{ app.user.userIdentifier }},
Logout
{% endif %}
{{ comment.content }}
Aucun commentaire pour le moment.
{% endif %}