{% extends "base.html" %} {% block title %}改写 · #{{ article.id }} · aether{% endblock %} {% block content %} {% if existing_drafts %}

已生成的草稿

{% for d in existing_drafts %} {% endfor %}
平台 prompt 状态 字数 时间
{% if d.platform == 'wechat_mp' %}公众号 {% else %}小红书{% endif %} {{ d.prompt_version }} {{ d.status }} {{ d.body_len }} {{ d.created_at.strftime('%m-%d %H:%M') if d.created_at else '—' }} 查看
{% endif %}

新建草稿

{% if needs_body %} {# Article has no body_html yet — can't translate. Block 1D must run first to fetch the article's raw HTML. We show a single CTA instead of the platform forms to avoid a no-op translate attempt. #}
{% else %}

选平台 → 点按钮 → 跳转实时进度页,可看到节点状态 + 日志流;结束后"返回"会带你到草稿库。

{% endif %}

原文信息

URL
{{ article.url }}
作者
{{ article.author or '—' }}
发布时间
{{ article.published_at or '—' }}
抓取时间
{{ article.fetched_at or '—' }}
摘要
{{ article.excerpt or '—' }}
状态
{{ article.translate_status }}
body_html 长度
{{ article.body_html|length if article.body_html else 0 }} 字符
{% endblock %}