{% extends '_base.html' %} {% load render_table from django_tables2 %} {% block title %}VRF {{ vrf }}{% endblock %} {% block content %}
{% if perms.ipam.change_vrf %} Edit this VRF {% endif %} {% if perms.ipam.delete_vrf %} Delete this VRF {% endif %}

{{ vrf }}

{% include 'inc/created_updated.html' with obj=vrf %}
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 %}
{% with vrf.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
Prefixes
{% render_table prefix_table %}
{% endblock %}