{% include 'header.html' %}

Admin Panel

{% if error %}
{{ error }}
{% endif %}

Subnet Management

{% if can_add_subnet %} {% endif %}
{% if subnets %}
{% for subnet in subnets %} {% endfor %}
Name CIDR Site Utilisation Actions
{{ subnet.name }} {{ subnet.cidr }} {{ subnet.site }} {% if subnet.utilization %} {{ subnet.utilization.percent }}% ({{ subnet.utilization.used }}/{{ subnet.utilization.total }}) {% else %} {% endif %}
{% if can_edit_subnet %} {% endif %} {% if can_delete_subnet %}
{% endif %}
{% else %}

No subnets found. Add your first subnet to get started.

{% endif %}