{% if connected %} pve connected {% else %} disconnected {% endif %}
{% if error and not connected %}
Cannot reach Proxmox: {{ error }}
{% endif %}
{{ stacks | length }}
Stacks
{{ total_vlans }}
VLANs
{{ total_vms }}
VMs
{% if connected %}
{{ node_name }} {{ node_ip }} Proxmox VE {{ proxmox_version }}
{% endif %} {% if stacks %} {% for stack in stacks %}
{{ stack.stack_name }} applied {{ stack.applied_at }}
{% if stack.vlans %}
VLANs
{% for vlan in stack.vlans %} {% endfor %}
VLAN ID Bridge CIDR Status
{{ vlan.vlan_id }} {{ vlan.bridge }} {{ vlan.cidr }} {{ vlan.live_status }}
{% endif %} {% if stack.vms %}
VMs
{% for vm in stack.vms %} {% endfor %}
VM Name VMID VLAN Status
{{ vm.name }} {{ vm.vmid }} {{ vm.vlan }} {{ vm.live_status }}
{% endif %} {% if not stack.vlans and not stack.vms %}
No resources tracked.
{% endif %}
{% endfor %} {% else %}
No stacks found — run hiveframe apply first.
{% endif %}