{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
{% plugin_buttons routetarget %} {% if perms.ipam.add_routetarget %} {% clone_button routetarget %} {% endif %} {% if perms.ipam.change_routetarget %} {% edit_button routetarget %} {% endif %} {% if perms.ipam.delete_routetarget %} {% delete_button routetarget %} {% endif %}

{% block title %}Route target {{ routetarget }}{% endblock %}

{% include 'inc/created_updated.html' with obj=routetarget %}
{% custom_links routetarget %}
{% endblock %} {% block content %}
Route Target
Name {{ routetarget.name }}
Tenant {% if routetarget.tenant %} {{ routetarget.tenant }} {% else %} None {% endif %}
Description {{ vrf.description|placeholder }}
{% include 'extras/inc/tags_panel.html' with tags=routetarget.tags.all url='ipam:routetarget_list' %} {% include 'inc/custom_fields_panel.html' with obj=routetarget %} {% plugin_left_page routetarget %}
{% include 'panel_table.html' with table=importing_vrfs_table heading="Importing VRFs" %} {% include 'panel_table.html' with table=exporting_vrfs_table heading="Exporting VRFs" %} {% plugin_right_page routetarget %}
{% plugin_full_width_page routetarget %}
{% endblock %}