{% extends main.html %} {% block content %}

Worker: {{Worker}}

{% set workers = [Worker] %} {% include "worker-table.html" %}

In Memory

    {% for task in has_what[Worker] %}
  • {{task}}
  • {% end %}

Processing

Call Stacks
    {% for task in processing[Worker] %}
  • {{task}}
  • {% end %}
{% if worker in worker_resources %}

Resources

> {% for resource in worker_resources.get(Worker, []) %} {% end %}
Resource Consumed Total
{{ resource }} {{ used_resources[Worker][resource] }} {{ worker_resources[Worker][resource] }}
{% end %} {% end %}