{% extends "base.html" %}{% block title %}审核与发布{% endblock %}{% block content %}

HUMAN IN THE LOOP

审核与发布

所有内容默认待审核;只有人工批准后才能打开创作中心发布。

新建图文

批量目录导入

每篇一个文件夹,包含 post.md 与图片。Front Matter 中填写 title、account、topics、images。

发布任务

{% for task in tasks %}{% else %}{% endfor %}
内容账号图片状态操作
{{ task.title }}{{ task.body[:80] }}{{ '…' if task.body|length > 80 }}{{ task.account_alias }}{{ (task.images_json|fromjson)|length }} 张{{ task.status }}{% if task.error %}{{ task.error }}{% endif %}{% if task.final_url %}查看笔记{% endif %}{% if task.status in ['pending_review','failed'] %}
{% elif task.status=='approved' %}
{% elif task.status=='verification_pending' %}
{% endif %}{% if task.status in ['pending_review','approved','queued','failed'] %}
{% endif %}
暂无待发布内容
{% endblock %}