{% extends "base.html" %} {% load static %} {% block body %} New Group

{% for group in groups %}
Group: {{group.name}}

{% for subnet in group.subnets %} {% endfor %}
Name Subnet
{{subnet.name}} {{subnet.subnet}} X
Add subnet Delete group


{% endfor %} {% endblock %}