{# unifi/widget_clients.html — dashboard widget: top active clients #} {% if not snapshot %}

No client data yet.

{% else %}
{{ snapshot.total_clients }} total
{{ snapshot.wireless_clients }} wireless
{{ snapshot.wired_clients }} wired
{% if clients %}
{% for c in clients %}
{{ c.hostname or c.ip or c.mac }} {% if c.tx_rate or c.rx_rate %} {% if c.tx_rate %}↑{{ "%.0f" | format(c.tx_rate / 1000) }}k{% endif %} {% if c.rx_rate %} ↓{{ "%.0f" | format(c.rx_rate / 1000) }}k{% endif %} {% endif %}
{% endfor %}
{% else %}
No clients connected.
{% endif %} {% endif %}