{% extends "info/netboxgroup/base.html" %} {% block base_content %}

Device Groups

{{ searchform }}
{% for netboxgroup in netboxgroups %} {% endfor %}
Device Groups
Group Description Devices  
{{ netboxgroup.pk }} {{ netboxgroup.description }}
    {% with netboxgroup.netbox_set.all as netboxes %} {% if netboxes %} {% for netbox in netboxes %}
  • {{ netbox.sysname }}
  • {% endfor %} {% else %}
  • No devices in this group
  • {% endif %} {% endwith %}
Edit
{% endblock %}