{% for w in workers %}
{{ w.host }} {{ w.gpu }} {% if w.online %}online{% else %}offline{% endif %}
{% if w.online %}
VRAM {{ w.vram_used_mib }} / {{ w.vram_total_mib }} MiB
GPU {{ w.gpu_util_pct }}%
Disk /{{ w.disk_used_pct }}
{% else %}
{{ w.error or "unreachable" }}
{% endif %}
{% endfor %}