{% extends "base.html" %} {% block title %}发行管理{% endblock %} {% block content %}
发行汽水作品 发行SUNO作品

提交发行

选择账号后自动加载...

短信验证码需转发到 /api/sms/webhook

发行批次历史

共 {{ total_batches }} 个批次
{% if batches %} {% for b in batches %} {% endfor %}
批次ID账号作品数量成功/失败状态创建时间操作
{{ b.id }} {{ b.account_name or b.account_id }} {{ b.total_count }} {{ b.completed_count }} / {{ b.failed_count }} {{ b.status }} {{ b.created_at[:16].replace('T', ' ') if b.created_at else '' }} 详情
{% if total_pages > 1 %}
{% if page > 1 %} 上一页 {% endif %} {% for p in range(1, total_pages + 1) %} {% if p == page %} {{ p }} {% elif p <= 3 or p >= total_pages - 2 or (p >= page - 2 and p <= page + 2) %} {{ p }} {% elif p == 4 or p == total_pages - 3 %} ... {% endif %} {% endfor %} {% if page < total_pages %} 下一页 {% endif %}
{% endif %} {% else %}

暂无发行任务。

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}