{% extends "base.html" %} {% block title %}发行详情 #{{ job.id }}{% endblock %} {% block content %} {% if job.is_ai_created and job.source_clip_id %}
来源 Suno Clip: {{ job.source_clip_id }}
{% endif %}

运行状态

{{ job.status }} {% if job.status not in ('completed', 'failed') %}
{% endif %}
{{ job.phase }}
{{ job.masked_phone or '-' }}
{% if job.error_message %}

{{ job.error_message }}

{% endif %}

发行成果

{{ job.album_id or '-' }}
{% if job.song_ids_parsed %} {% for sid in job.song_ids_parsed %} {{ sid }} {% endfor %} {% else %} - {% endif %}

基本信息

{{ job.account_id }}
{{ job.title or '-' }}
{% if job.auth_type == 'exclusive_agent' %}独家代理授权 {% elif job.auth_type == 'exclusive' %}独家授权(3年) {% else %}{{ job.auth_type or '-' }}{% endif %}
{% if job.auth_type == 'exclusive_agent' %}
{% if job.auth_region == 1 %}全球 {% elif job.auth_region == 2 %}中国(含港澳台) {% elif job.auth_region == 3 %}仅中国大陆 {% else %}{{ job.auth_region or '-' }}{% endif %}
{% endif %}
{{ job.issue_id }}
{{ job.task_id }}
{{ job.work_id or '-' }}

合同与追溯

{{ job.contract_package_id or '-' }}
{{ job.contract_id or '-' }}
{{ job.serial_number or '-' }}
{{ job.letsign_token or '-' }}

技术元数据

{{ job.cover_uri or '-' }}
{{ job.vod_cid or '-' }}
{{ job.artist_id or '-' }}
{{ job.meta_artist_id or '-' }}

时间戳

{{ job.created_at[:19] if job.created_at else '-' }}
{{ job.started_at[:19] if job.started_at else '-' }}
{{ job.finished_at[:19] if job.finished_at else '-' }}
{% endblock %} {% block scripts %} {% endblock %}