{% extends "base.html" %} {% block title %}TaskWatch - 仪表盘{% endblock %} {% block content %}

仪表盘

任务运行概览与趋势

任务总数
{{ stats.total_tasks }}
今日运行
{{ stats.today_runs }}
今日成功率
{{ stats.today_success_rate }}%
当前运行中
{{ stats.running_count }}

近 7 天运行趋势

最近运行记录

{% for run in recent_runs %} {% endfor %} {% if not recent_runs %} {% endif %}
时间 任务名 状态 耗时
{{ 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 }}
暂无运行记录
添加任务 查看全部日志
{% endblock %} {% block scripts %} {% endblock %}