{% load comments_utils i18n %}
{{ comment.author }} {{ comment.created_at|timesince }}
{% if comment.moderated == 'deleted' and is_staff %}
{% trans "This comment has been deleted and users can't see it." %}
{% endif %} {% if comment.moderated != 'deleted' or is_staff %}
{{ comment.body }}
{% endif %} {% if comment.moderated == 'spam' %}
{% trans "This comment is spam and users can't see it." %}
{% elif comment.moderated %}
{% blocktrans with moderated=comment.get_moderated_display.lower %} This comment has been {{ moderated }} by a moderator. {% endblocktrans %}
{%if comment.moderated_reason %}
{% trans "Reason:"%} {{ comment.moderated_reason }}
{% endif %} {% endif %}