{# comment - dict #}
{{ h.user_image(comment.author.name, size=26) }}
{{ comment.author.fullname or comment.author.name }}
{{ h.time_ago_from_timestamp(comment.modified_at or comment.created_at) }}
{% if h.check_access('comments_reply_create', {reply_to_id: comment.id}) %} {% endif %} {% if not comment.approved and h.check_access('comments_comment_approve', {id: comment.id}) %} {% endif %} {% if h.check_access('comments_comment_update', comment) %} {% endif %} {% if h.check_access('comments_comment_delete', comment) %} {% snippet 'comments/snippets/confirmation.html', comment_id=comment.id %} {% endif %}
{{- (comment.content)|replace('\n', '\n
'|safe) -}}