{% extends "layout.html" %} {% block body %}

index

当前任务总数: {{task_size}}

当前工作单元总数: {{worker_size}}

当前在运行的任务: {{payload_size}}

{% for task_type, payload_num, total_num in task_stats %} {% endfor %}
任务类型 负载量 总数
{{task_type}} {{payload_num}} {{total_num}}

以下任务类型需要更多的工作单元: {{task_type_list_need_more_workers}}

消息

{% for type, tid, wid, content in messages %} {% endfor %}
消息类型 Task ID 工作单元 ID
{{type}} {{tid}} {{wid}} {{content[:50]}}
{% endblock %}