{% include 'header.html' %}
{{ NAME }} IPAM
{% for site, subnets in sites_subnets.items() %}
{{ site }}
{% for subnet in subnets %}
{{ subnet.name }}
{{ subnet.cidr }}
{% if subnet.vlan_id %}
VLAN {{ subnet.vlan_id }}
{% endif %}
{% endfor %}
{% endfor %}