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

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

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Community
Value {{ object.value }}
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
Status {{ object.get_status_display }}
Description {{ object.description|placeholder }}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='plugins:netbox_bgp:community_list' %} {% include 'inc/custom_fields_panel.html' %} {% plugin_left_page object %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}