{% extends "base.html" %} {% block title %}文章库 · aether{% endblock %} {% block content %}
清空
{% if articles %} {% for a in articles %} {% endfor %}
id 标题 抓取时间 状态 操作
#{{ a.id }} {{ a.title or '(无标题)' }} {% if a.excerpt %}
{{ a.excerpt[:80] }}{% if a.excerpt|length > 80 %}…{% endif %}
{% endif %}
{{ a.source_name or a.source_id }} {{ a.fetched_at.strftime('%m-%d %H:%M') if a.fetched_at else '—' }} {{ a.translate_status }} {% if a.translate_status == 'drafted' %}查看草稿{% else %}去改写{% endif %}
{% else %}

没有匹配的文章。

先去 python -m blocks.sources.multi.subgraph --source hubspot 抓一波回来。

{% endif %} {% endblock %}