{% extends "base.html" %} {% block title %}Devices – Location Management{% endblock %} {% block content %} {# ── Collect grouped data ─────────────────────────────────────────────────── #} {% set named_areas = [] %} {% for d in devices %} {% if d.area and d.area != '' and d.area not in named_areas %} {% set _ = named_areas.append(d.area) %} {% endif %} {% endfor %} {% set bound_count = devices | selectattr('board') | list | length %} {% set unbound_count = devices | length - bound_count %} {# ── Page header ──────────────────────────────────────────────────────────── #}
Virtual devices are independent app entities — bind them to hardware when needed.
No devices defined yet.
{% if current_user.is_admin() %} Add your first device {% endif %}