{% extends 'generic/object.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {% endblock %} {% block controls %}
{% if perms.netbox_bgp.change_asn %} Edit {% endif %} {% if perms.netbox_bgp.delete_asn %} Delete {% endif %}
{% endblock controls %} {% block tabs %} {% endblock tabs %} {% block content %}
ASN
Site {% if object.site %} {{ object.site }} {% else %} None {% endif %}
Number {{ object }}
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
Status {{ object.get_status_display }}
Description {{ object.description|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
Related BGP Sessions
{% render_table related_session_table 'inc/table.html' %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}