{{ counts.total }} sessions
{% if counts.error > 0 %}
{{ counts.error }} error{{ "s" if counts.error != 1 else "" }}
{% endif %}
{% if counts.waiting > 0 %}
{{ counts.waiting }} waiting
{% endif %}
{% if counts.running > 0 %}
{{ counts.running }} running
{% endif %}
{% if counts.idle > 0 %}
{{ counts.idle }} idle
{% endif %}
{% if counts.stopped > 0 %}
{{ counts.stopped }} stopped
{% endif %}