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

    此评论已被禁用.

    {% 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 %} 允许显示 {% else %} 禁用 {% endif %} {% endif %}
  • {% endfor %}