{% extends "base.html" %} {% block title %}发行批次 #{{ batch.id }}{% endblock %} {% block content %}
账号: {{ batch.account_name or batch.account_id }}
进度: {{ batch.completed_count }}/{{ batch.total_count }}
失败: {{ batch.failed_count }}
状态: {{ batch.status }}
创建时间: {{ batch.created_at[:16].replace('T', ' ') if batch.created_at else '' }}
{% if batch.error_message %}
{{ batch.error_message }}
{% endif %} {% for j in jobs %} {% endfor %}
任务ID作品/ClipID标题授权类型当前阶段状态手机创建时间操作
{{ j.id }} {% if j.is_ai_created %} 🎼 AI ({{ j.source_clip_id[:8] if j.source_clip_id else '-' }}) {% else %} {{ j.issue_id or '-' }} {% endif %} {{ j.title or '-' }} {% if j.auth_type == 'exclusive_agent' %}代理 {% elif j.auth_type == 'exclusive' %}独家 {% else %}-{% endif %} {{ j.phase }} {{ j.status }} {{ j.masked_phone or '-' }} {{ j.created_at[:16].replace('T', ' ') if j.created_at else '' }} 详情
{% endblock %}