{% 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 VLAN ID Utilisation Actions
{{ subnet.name }} {{ subnet.cidr }} {{ subnet.site }} {% if subnet.vlan_id %} {{ subnet.vlan_id }} {% else %} {% endif %} {% 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 %}
{% if has_permission('manage_users') %}

Feature Flags

{% for flag in feature_flags %}
{% if flag.description %}

{{ flag.description }}

{% endif %}
{% endfor %}
{% endif %}