任务调度中心

总任务数: {{ tasks|length }}
运行中: {{ tasks|selectattr("is_running")|list|length }}
成功: {{ tasks|selectattr("last_run_status", "equalto", "success")|list|length }}
失败: {{ tasks|selectattr("last_run_status", "equalto", "failed")|list|length }}

任务列表

{% if tasks %}
{% for task in tasks %} {% endfor %}
任务名称 任务ID 状态 调度类型 调度配置 最后运行 操作
{{ task.name }} {{ task.id }} {{ {'success': '成功', 'failed': '失败', 'running': '运行中', 'pending': '等待'}[task.last_run_status or 'pending'] }} {{ {'cron': 'Cron', 'interval': '间隔'}[task.schedule_type] }} {{ task.schedule_value }} {{ task.last_run_time|dt if task.last_run_time else '-' }} 详情
{% else %}

暂无任务,请创建任务文件

{% endif %}