{% extends 'admin/base-admin.html.twig' %} {% block title %}Administration - Comments{% endblock %} {% block body %}
{% for comment in comments %}
{{ comment.Post.title }}: {{ comment.username }}

{{ comment.content }}

Delete {% if comment.valid == false %} Validate {% endif %}
{% endfor %}
{% endblock %}