{% extends 'base.html' %} {% load buttons %} {% load static %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% plugin_buttons object %} {% if perms.ipam.add_vlangroup %} {% clone_button object %} {% endif %} {% if perms.ipam.change_vlangroup %} {% edit_button object use_pk=1 %} {% endif %} {% if perms.ipam.delete_vlangroup %} {% delete_button object use_pk=1 %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
VLAN Group
Description {{ object.description|placeholder }}
Site {% if object.site %} {{ object.site }} {% else %} None {% endif %}
VLANs {{ vlans_count }}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% plugin_left_page object %}
{% include 'utilities/obj_table.html' with table=vlan_table table_template='panel_table.html' heading='VLANs' bulk_edit_url='ipam:vlan_bulk_edit' bulk_delete_url='ipam:vlan_bulk_delete' vlan_group=object %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}