{% extends "layout.html" %} {% block body %} 任务状态查询 {% if state %} 任务[{{ tid }}]当前状态 当前状态 {{ state.state }} {% if state.ip %} IP {{ state.ip }} {% endif %} {% if state.pid %} 工作单元运行进程ID {{ state.pid }} {% endif %} {% if state.exitcode %} 退出Code {{ state.exitcode }} {% endif %} {% if state.updated_at %} 更新时间 {{ state.updated_at }} {% endif %} {% if state.logs %} 日志信息 {{ state.logs }} {% endif %} 调度详情 {% endif %} {% endblock %}