{% for comment in comment_list %}
{% get_can_report_comment comment as 'can_report_comment' %}
{% jmbocache 3600 'comment-list-comment' comment.id can_report_comment request.user.id %}
{% with creator=comment.creator %}
{% if creator %}
{% if creator.image %}
{% else %}
{% endif %}
{% else %}
{% endif %}
{% endwith %}
{% humanize_time_diff comment.submit_date '' %}
{% with request.POST.next|default:request.META.PATH_INFO as next %}
{% trans "Reply" %}
{% endwith %}
{% if can_report_comment %}
{% with request.POST.next|default:request.META.PATH_INFO as next %}
{% trans "Report" %}
{% endwith %}
{% else %}
{% if request.user.is_authenticated %}
{% trans "Reported" %}
{% endif %}
{% endif %}