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