{% if comment.edited_on %}
Edited {{ comment.edited_on | humanize }} by {{ comment.editor.username }}
{% endif %}
{% if id != 0 and g.fas_user %}
{% endif %}
{% if id != 0 and g.fas_user and (g.repo_committer or (
comment.parent.status in [True, 'Open']
and g.fas_user.username == comment.user.username)) %}
{% endif %}
{% if id != 0 and g.fas_user and (g.repo_committer or (
comment.parent.status in [True, 'Open']
and g.fas_user.username == comment.user.username)) %}
{% endif %}
{% for attachment in attachments %}
{#
attachment[0] = link
attachment[1] = file name
attachment[2] = display name
attachment[3] = date
attachment[4] = comment id
#}
{{ attachment[2] }} - {{ attachment[3] }}
{% if attachment[4] is not none %}
Comment
{% else %}
From Issue description
{% endif %}
Download
{% endfor %}