{% load helpers %}
Total IPs

{{ total_ips|default:0 }}

VM IPs

{{ vm_ips_count|default:0 }}

Node IPs

{{ node_ips_count|default:0 }}

{% if vm_ips or node_ips %}

IP Addresses Assigned to VM Interfaces ({{ vm_ips|length }})

{% for ip in vm_ips %} {% endfor %}
IP Address VRF Status Interface DNS Name Description
{{ ip.address }} {% if ip.vrf %} {{ ip.vrf }} {% else %} — {% endif %} {{ ip.get_status_display }} {% if ip.assigned_object %} {{ ip.assigned_object.name }} {% else %} — {% endif %} {{ ip.dns_name|default:"—" }} {{ ip.description|default:"—"|truncatechars:40 }}

IP Addresses Assigned to Node Interfaces ({{ node_ips|length }})

{% for ip in node_ips %} {% endfor %}
IP Address VRF Status Interface DNS Name Description
{{ ip.address }} {% if ip.vrf %} {{ ip.vrf }} {% else %} — {% endif %} {{ ip.get_status_display }} {% if ip.assigned_object %} {{ ip.assigned_object.name }} {% else %} — {% endif %} {{ ip.dns_name|default:"—" }} {{ ip.description|default:"—"|truncatechars:40 }}
{% else %}
No IP addresses synced with Proxbox yet.
Click "Sync IP Addresses" to synchronize Proxmox IP addresses with NetBox.
{% endif %}