{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% if object.scope %} {# TODO: This should link to a filtered list of VLANGroups #} {% endif %} {% endblock %} {% block extra_controls %} {% if perms.ipam.add_vlan %} Add VLAN {% endif %} {% endblock %} {% block content %}
VLAN Group
Name {{ object.name }}
Description {{ object.description|placeholder }}
Scope {% if object.scope %} {{ object.scope }} {% else %} {% endif %}
VLANs {{ vlans_count }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_right_page object %}
VLANs
{% render_table vlans_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=vlans_table.paginator page=vlans_table.page %}
{% endblock %}