{% extends 'admin/layout.html.twig' %} {% block title %}Administration site Internet - EDIFIA WEB{% endblock %} {% block content %} {% autoescape false %}

{{ 'comment.gestion.page_title'|trans({}, 'admin') }}

{{ 'comment.gestion.question_title'|trans({}, 'admin') }}

{% for comment in questions %} {% endfor %}
{{ 'comment.label.id'|trans({}, 'admin') }} {{ 'comment.label.comment'|trans({}, 'admin') }} {{ 'comment.label.reported'|trans({}, 'admin') }} {{ 'comment.label.moderated'|trans({}, 'admin') }} {{ 'question.label.actions'|trans({}, 'admin') }}
{{ comment.id }} {{ comment.user.firstname ~ ' ' ~ comment.user.lastname }} - le {{ comment.createdAt|date('d/m/Y') }}
{{ comment.comment }}
{% if comment.isReported %} {{ 'yes'|trans }} - le {{ comment.reportedAt|date('d/m/Y') }} par {{ comment.reporter.firstname ~ ' ' ~ comment.reporter.lastname }} {% else %} {{ 'no'|trans }} {% endif %} {% if comment.isModerated %} {{ 'yes'|trans }} {% else %} {{ 'no'|trans }} {% endif %}

{{ 'comment.gestion.post_title'|trans({}, 'admin') }}

{% for comment in posts %} {% endfor %}
{{ 'comment.label.id'|trans({}, 'admin') }} {{ 'comment.label.comment'|trans({}, 'admin') }} {{ 'comment.label.reported'|trans({}, 'admin') }} {{ 'comment.label.moderated'|trans({}, 'admin') }} {{ 'question.label.actions'|trans({}, 'admin') }}
{{ comment.id }} {{ comment.user.firstname ~ ' ' ~ comment.user.lastname }} - le {{ comment.createdAt|date('d/m/Y') }}
{{ comment.comment }}
{% if comment.isReported %} {{ 'yes'|trans }} - le {{ comment.reportedAt|date('d/m/Y') }} par {{ comment.reporter.firstname ~ ' ' ~ comment.reporter.lastname }} {% else %} {{ 'no'|trans }} {% endif %} {% if comment.isModerated %} {{ 'yes'|trans }} {% else %} {{ 'no'|trans }} {% endif %}

{{ 'comment.gestion.quiz_title'|trans({}, 'admin') }}

{% for comment in quizzes %} {% endfor %}
{{ 'comment.label.id'|trans({}, 'admin') }} {{ 'comment.label.comment'|trans({}, 'admin') }} {{ 'comment.label.reported'|trans({}, 'admin') }} {{ 'comment.label.moderated'|trans({}, 'admin') }} {{ 'question.label.actions'|trans({}, 'admin') }}
{{ comment.id }} {{ comment.user.firstname ~ ' ' ~ comment.user.lastname }} - le {{ comment.createdAt|date('d/m/Y') }}
{{ comment.comment }}
{% if comment.isReported %} {{ 'yes'|trans }} - le {{ comment.reportedAt|date('d/m/Y') }} par {{ comment.reporter.firstname ~ ' ' ~ comment.reporter.lastname }} {% else %} {{ 'no'|trans }} {% endif %} {% if comment.isModerated %} {{ 'yes'|trans }} {% else %} {{ 'no'|trans }} {% endif %}
{% endautoescape %} {% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('admin_utils') }} {% endblock %}