{% load spirit_tags i18n %}
{% for c in comments %}
{% if not c.is_removed %}
{{ c.user.username }}{{ c.user.get_full_name }}
{% if not c.action %} {{ c.comment_html|safe }} {% else %}

{% get_comment_action_text c.action %}.

{% endif %}
{% if not c.action %} {% endif %} {% else %}
{% if user.st.is_moderator %} {{ c.comment_html|safe }} {% else %} {% trans "This comment was deleted" %}. {% endif %}
{% if user.st.is_moderator %} {% endif %} {% endif %}
{% endfor %}