18 lines
791 B
Twig
18 lines
791 B
Twig
<turbo-frame id="comment_{{ comment.id }}">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h5 class="card-title">
|
|
{{ 'commented_at'|trans({ email: comment.author.email, date: comment.createdAt|date }) }}
|
|
{% if comment.createdAt != comment.editedAt %}
|
|
{{ 'edited_at'|trans({ date: comment.editedAt|date }) }}
|
|
{% endif %}
|
|
</h5>
|
|
<p class="card-text">{{ comment.content }}</p>
|
|
{% if is_granted('COMMENT_EDIT', comment) %}
|
|
<a href="{{ path('app_post_comment_edit', {'id': comment.id}) }}" class="btn btn-primary">Modifier</a>
|
|
{{ include('comment/_delete_form.html.twig') }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</turbo-frame>
|