{% extends "base.html" %} {% block title %}TaskWatch - 任务管理{% endblock %} {% block content %}

任务管理

管理所有定时任务

{% for task in tasks %} {% endfor %} {% if not tasks %} {% endif %}
ID 任务名 调度规则 上次运行 状态 操作
{{ task.id }} {{ task.name }} {% if task.tags %} {{ task.tags }} {% endif %} {{ task.schedule_type }} {{ task.schedule }} {{ task.last_run_time or '-' }}
暂无任务,点击"新建任务"开始
{% endblock %} {% block scripts %} {% endblock %}