{% extends '_base.html' %} {% load helpers %} {% block content %} {% include 'ipam/inc/vlan_header.html' with active_tab='vlan' %}
VLAN
Site {% if vlan.site %} {% if vlan.site.region %} {{ vlan.site.region }} {% endif %} {{ vlan.site }} {% else %} None {% endif %}
Group {% if vlan.group %} {{ vlan.group }} {% else %} None {% endif %}
VLAN ID {{ vlan.vid }}
Name {{ vlan.name }}
Tenant {% if vlan.tenant %} {% if vlan.tenant.group %} {{ vlan.tenant.group }} {% endif %} {{ vlan.tenant }} {% else %} None {% endif %}
Status {{ vlan.get_status_display }}
Role {% if vlan.role %} {{ vlan.role }} {% else %} None {% endif %}
Description {% if vlan.description %} {{ vlan.description }} {% else %} N/A {% endif %}
Tags {% for tag in vlan.tags.all %} {% tag 'ipam:vlan_list' tag %} {% empty %} N/A {% endfor %}
{% with vlan.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
Prefixes
{% include 'responsive_table.html' with table=prefix_table %} {% if perms.ipam.add_prefix %} {% endif %}
{% endblock %}