{% for comment in comments %}
  • {{ moment(comment.timestamp).fromNow() }}
    {{ comment.author.username }}
    {% if comment.disabled %}

    This comment has been disabled by a moderator.

    {% endif %} {% if moderate or not comment.disabled %} {% if comment.body_html %} {{ comment.body_html | safe }} {% else %} {{ comment.body }} {% endif %} {% endif %}
    {% if moderate %}
    {% if comment.disabled %} Enable {% else %} Disable {% endif %} {% endif %}
  • {% endfor %}