2020-04-10 10:21:02 -04:00
{% extends 'base.html' %}
2018-08-02 05:59:00 +10:00
2020-11-19 15:59:11 -05:00
{% block title %}{{ object }} - VLANs{% endblock %}
2018-08-02 05:59:00 +10:00
{% block content %}
2019-03-05 15:42:47 -06:00
< div class = "row noprint" >
2018-08-02 05:59:00 +10:00
< div class = "col-sm-12 col-md-12" >
< ol class = "breadcrumb" >
< li > < a href = "{% url 'ipam:vlangroup_list' %}" > VLAN Groups< / a > < / li >
2020-11-19 15:59:11 -05:00
{% if object.site %}
2021-02-26 17:23:23 -05:00
< li > < a href = "{{ object.site.get_absolute_url }}" > {{ object.site }}< / a > < / li >
2018-08-02 05:59:00 +10:00
{% endif %}
2020-11-19 15:59:11 -05:00
< li > {{ object }}< / li >
2018-08-02 05:59:00 +10:00
< / ol >
< / div >
< / div >
{% include 'ipam/inc/vlangroup_header.html' %}
< div class = "row" >
< div class = "col-md-12" >
{% 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' %}
< / div >
< / div >
{% endblock %}