1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Blog/templates/comment/recent_comment.html.twig
2021-01-16 16:27:47 +01:00

16 lines
873 B
Twig

<h4>Recent comments</h4>
<div class="accordion" id="accordionComment">
{% for comment in comments %}
<div class="accordion-item">
<h2 class="accordion-header" id="heading{{ comment.id }}">
<button class="accordion-button" type="button" data-mdb-toggle="collapse" data-mdb-target="#collapse{{ comment.id }}" aria-controls="collapse{{ comment.id }}">
{{ comment.post.title }}: {{ comment.username }} <code class="text-muted">{{ comment.createdAt.format('Y-m-d H:i:s') }}</code>
</button>
</h2>
<div id="collapse{{ comment.id }}" class="accordion-collapse collapse" aria-labelledby="heading{{ comment.id }}" data-mdb-parent="#accordionComment">
<div class="accordion-body">{{ comment.content }}</div>
</div>
</div>
{% endfor %}
</div>