{% extends '_base.html' %} {% load helpers %} {% block header %}
{% if perms.ipam.change_vrf %} Edit this VRF {% endif %} {% if perms.ipam.delete_vrf %} Delete this VRF {% endif %}

{% block title %}VRF {{ vrf }}{% endblock %}

{% include 'inc/created_updated.html' with obj=vrf %} {% endblock %} {% block content %}
VRF
Route Distinguisher {{ vrf.rd }}
Tenant {% if vrf.tenant %} {{ vrf.tenant }} {% else %} None {% endif %}
Unique IP Space {% if vrf.enforce_unique %} {% else %} {% endif %}
Description {% if vrf.description %} {{ vrf.description }} {% else %} N/A {% endif %}
Tags {% for tag in vrf.tags.all %} {% tag 'ipam:vrf_list' tag %} {% empty %} N/A {% endfor %}
{% with vrf.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
Prefixes
{% include 'responsive_table.html' with table=prefix_table %}
{% endblock %}