21 lines
943 B
Twig
21 lines
943 B
Twig
{% extends 'admin/base-admin.html.twig' %}
|
|
|
|
{% block title %}Administration - Comments{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container-fluid">
|
|
{% for comment in comments %}
|
|
<div class="card text-center">
|
|
<div class="card-body">
|
|
<h5 class="card-title">{{ comment.Post.title }}: {{ comment.username }}</h5>
|
|
<p class="card-text">{{ comment.content }}</p>
|
|
<a href="{{ path('comment-remove', {id: comment.id}) }}" class="btn btn-danger">Delete</a>
|
|
{% if comment.valid == false %}
|
|
<a href="{{ path('comment-valid', {id: comment.id}) }}" class="btn btn-primary">Validate</a>
|
|
{% endif %}
|
|
</div>
|
|
<div class="card-footer text-muted">{{ comment.createdAt.format('Y-m-d H:i:s') }}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|