{% extends "base.html" %} {% block title %}TaskWatch - {{ task.name }}{% endblock %} {% block content %}
ID: {{ task.id }} | {{ task.schedule_type }}: {{ task.schedule }}
| Run ID | 开始时间 | 状态 | 耗时 | 触发方式 |
|---|---|---|---|---|
| {{ run.id }} | {{ run.start_time[:19] if run.start_time else '-' }} | {% if run.status == 'success' %} 成功 {% elif run.status == 'failed' %} 失败 {% elif run.status == 'timeout' %} 超时 {% elif run.status == 'running' %} 运行中 {% else %} {{ run.status }} {% endif %} | {{ run.duration_display }} | {{ run.trigger }} |
| 暂无运行记录 | ||||