{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
{% plugin_buttons object %} {% if perms.ipam.add_vrf %} {% clone_button object %} {% endif %} {% if perms.ipam.change_vrf %} {% edit_button object %} {% endif %} {% if perms.ipam.delete_vrf %} {% delete_button object %} {% endif %}

{% block title %}VRF {{ object }}{% endblock %}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
VRF
Route Distinguisher {{ object.rd }}
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
Unique IP Space {% if object.enforce_unique %} {% else %} {% endif %}
Description {{ object.description|placeholder }}
Prefixes {{ prefix_count }}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='ipam:vrf_list' %} {% include 'inc/custom_fields_panel.html' %} {% plugin_left_page object %}
{% include 'panel_table.html' with table=import_targets_table heading="Import Route Targets" %} {% include 'panel_table.html' with table=export_targets_table heading="Export Route Targets" %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}