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

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

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Route Target
Name {{ object.name }}
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
Description {{ object.description|placeholder }}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='ipam:routetarget_list' %} {% include 'inc/custom_fields_panel.html' %} {% plugin_left_page object %}
{% 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 object %}
{% plugin_full_width_page object %}
{% endblock %}