{% extends '_base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% block header %}
{% if perms.ipam.add_vrf %} {% clone_button 'ipam:vrf_add' vrf %} {% endif %} {% 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 %}
{% custom_links 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 {{ vrf.description|placeholder }}
Prefixes {{ prefix_count }}
{% include 'extras/inc/tags_panel.html' with tags=vrf.tags.all url='ipam:vrf_list' %}
{% include 'inc/custom_fields_panel.html' with obj=vrf %}
{% endblock %}