{# Hardware serial, MAC, OS and kernel are deliberately absent: this panel
renders for guests, and they are permanent unique identifiers or name
the platform. Audit finding F-01. #}
{# Two fixed columns: what the unit is on the left, where it sits on
the network on the right. #}
{% for label, value in [
('Hostname', device.hostname),
('Version', app_version),
] %}
{% if value and value != 'unknown' %}
{{ label }}
{{ value }}
{% endif %}
{% endfor %}
{% set dns = device.dns|join(', ') %}
{% if dns %}