{% for task in tasks %} {% set status_label, status_class = status_badge_config(task.status) %} {% set percent = progress_percent(task.processed_items_count, task.total_items_count) %} {% set ai_percent = rate_percent(task.analysis_success_rate) %} {{ task.id }} {{ task.platform | platform_label }} {{ task.created_at }} 热点 {{ task.hotspot_limit }} / 内容 {{ task.item_limit_per_hotspot }} / 评论 {{ task.comment_limit_per_item }}
已处理 {{ task.processed_items_count }} / 共 {{ task.total_items_count }} 条内容 {{ percent }}%
成功 {{ task.successful_items_count }} / 失败 {{ task.failed_items_count }}
AI 成功率 {{ ai_percent }}% {% if task.analysis_status == "insufficient" %} AI 样本不足 {% endif %}
{{ status_label }} {% if task.error_stage or task.error_type %}
{{ task.error_stage }} / {{ task.error_type }} {% endif %} {% if task.error_message %}
{{ task.error_message }} {% endif %} 查看 {% else %} 还没有任何任务,请在上方创建第一个任务 {% endfor %}