{% if comments %} {% for comment in comments %}
  • {% if comment.comment_type == 'reply' %}

    回复给 {% if comment.followed_name() %} {{ comment.followed_name() }} {% else %} {{ comment.reply_to }} ({{ comment.reply_to }}的该条评论已经被删除!) {% endif %} :

    {% endif %}
    {{ moment(comment.timestamp.replace(microsecond=0)).format('LLL') }}
    {{ comment.author_name }} {% if User.query.filter_by(email=comment.author_email).count() %} 管理员 {% endif %}
    {% if comment.disabled == False or current_user.is_authenticated %}

    {{ comment.content }}

    {% endif %} {% if comment.disabled == True and current_user.is_authenticated %}

    该评论已经被管理员屏蔽!访客无法查看和回复此评论内容。

    {% elif comment.disabled == True %}

    该评论已经被管理员屏蔽!

    {% endif %}
    {% if current_user.is_authenticated %}
    {% if comment.disabled == False %} 屏蔽 {% else %} 恢复 {% endif %}
    {% endif %} {% if comment.disabled == False or current_user.is_authenticated %}
    {% endif %}
  • {% endfor %} {% else %}
  • 暂无评论
  • {% endif %}

确认删除评论?

将该评论删除后不可恢复,您确认要删除吗?

(提示:如果您只是不想显示该评论内容,可以选择将其屏蔽,而不必删除。)

确定