{% include 'header.html' %}
Admin Panel
{% if error %}
{{ error }}
{% endif %}
Audit Log
View system activity
User Management
Manage users & roles
Subnet Management
{% if can_add_subnet %}
Add Subnet
{% endif %}
{% if subnets %}
Name
CIDR
Site
Actions
{% for subnet in subnets %}
{{ subnet.name }}
{{ subnet.cidr }}
{{ subnet.site }}
{% if can_edit_subnet %}
{% endif %} {% if can_delete_subnet %}
{% endif %}
{% endfor %}
{% else %}
No subnets found. Add your first subnet to get started.
{% endif %}
Add New Subnet
Cancel
Add Subnet
Edit Subnet
Cancel
Save Changes