{# Workers list — rendered as HTMX partial #} {% if workers %} {% for w in workers %}
{{ w.id }}
{% if w.status == 'idle' %}Idle{% elif w.status == 'busy' %}Busy{% else %}Offline{% endif %}
CPU {{ w.cpu_percent | round }}%
Memory {{ w.memory_display }}
{% endfor %} {% else %}
No workers connected
{% endif %}