{% extends "base.html" %} {% block title %}Suno 任务{% endblock %} {% block content %}
{% set ready_accounts = accounts | selectattr('probe_ready') | list %} {% if suno_dispatch_mode != 'cloud' and not ready_accounts %}
还没有可用的 Suno 账号。请先去 账号管理 添加 Suno 账号 → 打开登录 → 确认已登录(系统会自动抓 personas + API 端点)。
{% endif %}

批量提交

{% if suno_dispatch_mode == 'cloud' %}
{% else %}
{% endif %}
{% if batches %}

批次记录

{% for b in batches %} {% endfor %}
ID账号Persona进度状态创建时间
{{ b.id }} {{ b.account_name or '-' }} {{ b.persona_name }} {{ b.completed_count }}/{{ b.total_count }}{% if b.failed_count %} ({{ b.failed_count }}失败){% endif %} {{ b.status }} {{ b.created_at[:16] }}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}