{% extends "base.html" %} {% block title %}歌词详情 #{{ gen.id }}{% endblock %} {% block content %}
{{ gen.status }} {% if gen.status in ('pending', 'running') %}
{% endif %}
{{ gen.model }}

{{ gen.prompt }}

{% if gen.error_message %}

{{ gen.error_message }}

{% endif %} {% if gen.style_description %}
{{ gen.style_description }}
{% endif %} {% if gen.final_lyrics %}
{{ gen.final_lyrics }}
{% endif %} {% if gen.sections_data %}
{{ gen.sections_data.original_structure | join(' → ') }}
{{ gen.sections_data.target_structure | join(' → ') }}
{% endif %} {% if gen.created_at %}
{{ gen.created_at[:19] }}
{% if gen.finished_at %}
{{ gen.finished_at[:19] }}
{% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}