{% extends "base.html" %} {% block title %}Suno 批次 #{{ batch.id }}{% endblock %} {% block content %}
账号: {{ batch.account_name }}
Persona: {{ batch.persona_name }}
进度: {{ batch.completed_count }}/{{ batch.total_count }}
失败: {{ batch.failed_count }}
状态: {{ batch.status }}
创建: {{ batch.created_at[:16] }}
⚠️ Suno 触发人机验证
请在浏览器打开 https://suno.com/create 手动通过验证,然后回来点下面的按钮继续提交剩余任务。
{% if batch.error_message %}
{{ batch.error_message }}
{% endif %} {% for j in jobs %}
#{{ loop.index }} 描述词:{{ j.description }} {% if j.tags %} Styles:{{ j.tags }}{% endif %}  {{ j.submit_status }} {% if j.error_message %} 错误:{{ j.error_message }}{% endif %}
{% if j.clips %}
{% for c in j.clips %}
{% if c.image_url %} {% else %}
无封面
{% endif %}
{{ c.status or '-' }} {% if c.duration %} {{ '%.1f'|format(c.duration) }}s{% endif %}
{% if c.audio_url %} {% else %} 暂无音频 {% endif %}
歌词{% if c.lyrics %}({{ c.lyrics|length }} 字){% else %}(暂无){% endif %}
{{ c.lyrics or '' }}
{% endfor %}
{% else %}
尚未提交
{% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}