{% extends "base.html" %} {% block title %}互动工作台{% endblock %} {% block content %}

评论与私信工作台

所有任务逐条审核。检测到手机号、微信号、地址、拒绝或投诉后立即停止,并提示前往原账号人工查看。

登记会话索引

创建待审核动作

会话状态

{% for t in threads %}{% endfor %}
ID账号渠道对象依据状态操作
{{ t.id }}{{ t.account_id }}{{ t.channel }}{{ t.display_name or t.external_user_id }}{{ t.lead_reason or '-' }}{{ t.status }}

审核与执行

{% for t in tasks %}{% endfor %}
ID账号类型目标内容状态操作
{{ t.id }}{{ t.account_alias }}{{ t.kind }}{{ t.display_name or t.target_user_id or t.target_note_id }}{{ t.content }}{{ t.status }}{% if t.error %}
{{ t.error }}{% endif %}
{% if t.status == 'pending_review' %}
{% endif %} {% if t.status == 'approved' %}
{% endif %} {% if t.status in ['pending_review','approved','queued'] %}
{% endif %}
{% endblock %}