{# docker/widget_resources.html — dashboard widget: CPU + memory bars, busiest containers #} {% if not rows %}
No running containers.
{% else %}
{% for r in rows %} {% set c = r.c %}
{{ c.name }}{% if multi_host %} · {{ r.host_name }}{% endif %} {% if c.cpu_pct is not none %}CPU {{ "%.1f" | format(c.cpu_pct) }}%{% endif %} {% if c.mem_pct is not none %} · Mem {{ "%.1f" | format(c.mem_pct) }}%{% endif %}
{% if c.cpu_pct is not none %}
{% endif %} {% if c.mem_pct is not none %}
{% endif %}
{% endfor %}
{% endif %}