{% extends "base.html" %} {% block title %}TaskWatch - 报告中心{% endblock %} {% block content %}

报告中心

查看日报和周报历史

日报历史

{% for report in daily_reports %} {% endfor %} {% if not daily_reports %} {% endif %}
日期 任务总数 成功数 失败数 成功率 发送状态 操作
{{ report.period_start[:10] }} {{ report.summary_data.total | default('-') }} {{ report.summary_data.success_count | default('-') }} {{ report.summary_data.fail_count | default('-') }} {% if report.summary_data.success_rate is defined %}{{ report.summary_data.success_rate }}%{% else %}-{% endif %} {% if report.sent_status == 'success' %} 已发送 {% elif report.sent_status == 'failed' %} 发送失败 {% else %} 未发送 {% endif %}
暂无日报

周报历史

{% for report in weekly_reports %} {% endfor %} {% if not weekly_reports %} {% endif %}
周期 任务总数 成功率趋势 发送状态 操作
{{ report.period_start[:10] }} ~ {{ report.period_end[:10] }} {{ report.summary_data.total | default('-') }} {% if report.summary_data.success_rate is defined %}{{ report.summary_data.success_rate }}%{% else %}-{% endif %} {% if report.sent_status == 'success' %} 已发送 {% elif report.sent_status == 'failed' %} 发送失败 {% else %} 未发送 {% endif %}
暂无周报
{% endblock %} {% block scripts %} {% endblock %}