{% import "partials/icons.html" as ico %} {% set counts = counts | default({}, true) %}
{% if not clients %}
{{ ico.i('group', 18) }} No clients configured yet.

Clients group printers by site or organization.

{% else %}
{% for c in clients %} {% endfor %}
Name Printers Created
{{ c.name }} {% set n = counts.get(c.id, 0) %} {% if n %}{{ n }}{% else %}0{% endif %} {{ c.created_at.strftime('%Y-%m-%d') if c.created_at else '—' }} Open{{ ico.i('chevron', 13) }}
{% endif %}