{% for comment in submission.comments_set_complete %}
{% if comment.is_unvetted %}
{% include 'bi/info-circle-fill.html' %}
{% include 'bi/arrow-right.html' %}
{% endif %}
{{ comment.author }}
{% if comment.anonymous %}
Chose public anonymity
{% endif %}
{% if comment.is_vetted %}
{% include 'bi/check-circle-fill.html' %}
{% elif comment.is_rejected %}
{% include 'bi/x-circle-fill.html' %}
{% elif comment.is_unvetted %}
{% include 'bi/exclamation-triangle-fill.html' %} {% endif %}
{{ comment.get_status_display }}
{% if comment.is_unvetted %}
Vet this Comment here
{% elif comment.is_vetted %}
View full Comment here
{% endif %}
{{ comment.comment_text|truncatewords:6 }}
{% if comment.is_author_reply %}Author Reply{% else %}Comment{% endif %}