{% extends "base.html" %} {% block title %}TaskWatch - 仪表盘{% endblock %} {% block content %}
任务运行概览与趋势
| 时间 | 任务名 | 状态 | 耗时 |
|---|---|---|---|
| {{ run.start_time[:19] if run.start_time else '-' }} | {{ run.task_name or '-' }} | {% if run.status == 'success' %} 成功 {% elif run.status == 'failed' %} 失败 {% elif run.status == 'timeout' %} 超时 {% elif run.status == 'running' %} 运行中 {% else %} {{ run.status }} {% endif %} | {{ run.duration_display }} |
| 暂无运行记录 | |||