{# plugins/unifi/templates/unifi/dpi.html #} {% if not snapshot %}
No DPI data yet. DPI must be enabled on the UniFi controller.
| {{ cat.cat_name or cat.cat_id }} | {% if bytes >= 1073741824 %}{{ "%.1f"|format(bytes / 1073741824) }} GB {% elif bytes >= 1048576 %}{{ "%.1f"|format(bytes / 1048576) }} MB {% elif bytes >= 1024 %}{{ "%.0f"|format(bytes / 1024) }} KB {% else %}{{ bytes }} B{% endif %} |
| {{ c.hostname or c.mac }} {{ c.mac }} | {% set bytes = c.bytes %} {% if bytes >= 1073741824 %}{{ "%.1f"|format(bytes / 1073741824) }} GB {% elif bytes >= 1048576 %}{{ "%.1f"|format(bytes / 1048576) }} MB {% elif bytes >= 1024 %}{{ "%.0f"|format(bytes / 1024) }} KB {% else %}{{ bytes }} B{% endif %} |