{% extends "base.html" %} {% block title %}Network Maps - Network Management{% endblock %} {% block content %}
Maps Directory: {{ maps_base_dir }}

Site Maps Overview

{% if maps_data.last_updated %} Last updated: {{ maps_data.last_updated.strftime('%Y-%m-%d %H:%M') }} {% endif %}
{% if maps_data.sites %}
{% for site_name, site_data in maps_data.sites.items() %}
{% for map_data in site_data.maps[:6] %}
{{ map_data.created.strftime('%m/%d') if map_data.created else 'N/A' }} {% if map_data.size_mb %} {{ "%.1f"|format(map_data.size_mb) }}MB {% endif %}
{% endfor %} {% if site_data.maps|length > 6 %} {% endif %}
{% endfor %}
{% else %}

No maps found

No topology maps found in the maps directory.

{% endif %}
{% endblock %}