mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
25 lines
1.1 KiB
Twig
25 lines
1.1 KiB
Twig
{% macro show_comment(comment, options) %}
|
|
<div class="item-bloc">
|
|
<div class="item-row">
|
|
<div>
|
|
{% if options.pinned is defined %}
|
|
<i class="fa fa-flag fa-fw fa-lg" title="{{ 'pinned'|trans }}"></i>
|
|
{% endif %}
|
|
<a id="comment-{{ comment.id }}" href="{{ '#comment-' ~ comment.id }}" class="fa fa-pencil-square-o fa-fw"></a>
|
|
|
|
{% set creator = comment.creator is defined ? comment.creator : comment.createdBy %}
|
|
{{ 'by'|trans }}<b>{{ creator }}</b>
|
|
|
|
{{ ', ' ~ 'on'|trans ~ ' ' ~ comment.createdAt|format_date('long') }}<br>
|
|
<i>{{ 'Last updated on'|trans ~ ' ' ~ comment.updatedAt|format_datetime('long', 'short') }}</i>
|
|
</div>
|
|
<ul class="record_actions">
|
|
{{ options.recordAction }}
|
|
</ul>
|
|
</div>
|
|
<div class="item-row separator">
|
|
<blockquote class="chill-user-quote col">{{ comment.content|chill_markdown_to_html }}</blockquote>
|
|
</div>
|
|
</div>
|
|
{% endmacro %}
|