{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
{% comment %} {% plugin_buttons object %} {% if perms.netbox_bgp.add_policy %} {% clone_button object %} {% endif %} {% if perms.netbox_bgp.change_policy %} {% edit_button object %} {% endif %} {% if perms.netbox_bgp.delete_policy %} {% delete_button object %} {% endif %} {% endcomment %} {% if perms.netbox_bgp.change_policy %} Edit {% endif %} {% if perms.netbox_bgp.delete_policy %} Delete {% endif %}

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

Created {{ object.created }} · Updated {{ object.last_updated|timesince }} ago {{ object|meta:"app_label" }}.{{ object|meta:"model_name" }}:{{ object.pk }}

{% custom_links object %}
{% endblock %} {% block content %}
Routing Policy
name {{ object.name }}
Description {{ object.description|placeholder }}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='plugins:netbox_bgp:routing_policy_list' %} {% include 'inc/custom_fields_panel.html' %} {% plugin_left_page object %}
{% plugin_right_page object %}
{% include 'utilities/obj_table.html' with table=related_session_table table_template='panel_table.html' heading='Related BGP Sessions' panel_class='default noprint' %} {% plugin_full_width_page object %}
{% endblock %}