{% extends "layout.html" %} {% block content %}

Registered Hosts

{% if servers %}
{% for server in servers %} {% endfor %}
Hostname IP Address Created
{{ server.hostname }} {{ server.ip_address }} {{ server.created_at.strftime('%Y-%m-%d') }} View
{% else %}
No hosts registered in this subnet
Add New Server Scan Subnet
{% endif %}

Subnet Information

Network: {{ subnet.cidr }}
Location: {{ subnet.location }}
Total IPs: {{ total_ips }}
Used IPs: {{ used_ips }} ({{ '%.1f'|format(usage_percent) }}%)
Available IPs: {{ total_ips - used_ips }}
Auto Scan: {% if subnet.auto_scan %} Enabled {% else %} Disabled {% endif %}
Created: {{ subnet.created_at.strftime('%Y-%m-%d') }}
{% endblock %}