{% extends "base.html" %} {% block title %}任务详情 - {{ task.name if task else '任务' }}{% endblock %} {% block page_title %}任务详情{% endblock %} {% block styles %} {% endblock %} {% block content %}

{{ task.name if task else '任务详情' }}

{% if task.status == 'completed' %}已完成 {% elif task.status == 'failed' %}失败 {% elif task.status == 'cancelled' %}已取消 {% else %}运行中{% endif %} {{ task.created_at.strftime('%Y-%m-%d %H:%M:%S') if task and task.created_at else '未知时间' }} {% if task %} {% if task.status == 'completed' %}任务已完成 {% elif task.status == 'failed' %}{{ task.error or '任务失败' }} {% elif task.status == 'cancelled' %}任务已取消 {% else %}任务运行中...{% endif %} {% else %} 加载中... {% endif %}
{% if task and task.challenge_id %} 查看结果 {% endif %}
生成日志
正在加载日志...
{% if task and task.error %}
错误信息:
{{ task.error }}
{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}