{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
{% comment %} {% plugin_buttons object %} {% if perms.netbox_bgp.add_session %} {% clone_button object %} {% endif %} {% if perms.netbox_bgp.change_session %} {% edit_button object %} {% endif %} {% if perms.netbox_bgp.delete_session %} {% delete_button object %} {% endif %} {% endcomment %} {% if perms.netbox_bgp.change_session %} 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:peer_group_list' %} {% include 'inc/custom_fields_panel.html' %} {% plugin_left_page object %}
{% include 'panel_table.html' with table=import_policies_table heading="Import Policies" %} {% include 'panel_table.html' with table=export_policies_table heading="Export Policies" %} {% 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 %}