{% extends "admin/base.html" %} {% block main_content %}

评论筛选

按 scope、审核状态、文章 slug 或关键词快速定位评论,尤其适合处理段落评论和垃圾留言。
清空

评论队列

处理前台真实评论,并能一键跳到对应文章或段落核对上下文。
{% if rows | length > 0 %}
{% for row in rows %} {% endfor %}
ID 作者 / 文章 内容与上下文 状态 时间 操作
#{{ row.id }}
{{ row.author }} {{ row.post_slug }} {% if row.scope == "paragraph" %} {{ row.scope_label }} {% else %} {{ row.scope_label }} {% endif %} {% if row.frontend_url %} {% if row.scope == "paragraph" %}跳到前台段落{% else %}跳到前台文章{% endif %} {% endif %}
{{ row.content }} {% if row.reply_target != "-" %} 回复目标:{{ row.reply_target }} {% endif %} {% if row.scope == "paragraph" and row.paragraph_excerpt != "-" %} 段落上下文:{{ row.paragraph_excerpt }} {% endif %} {% if row.scope == "paragraph" and row.paragraph_key != "-" %} 段落 key:{{ row.paragraph_key }} {% endif %}
{% if row.approved %} 已审核 {% else %} 待审核 {% endif %} {{ row.created_at }}
API
{% else %}
当前筛选条件下暂无评论数据。
{% endif %}
{% endblock %}