{% extends "base.html" %} {% block title %}{{ site_name }} Maps - Network Management{% endblock %} {% block content %}
{{ site_data.maps|length }} Maps
{% if site_data.last_modified %}
{{ site_data.last_modified.strftime('%Y-%m-%d') }} Last Updated
{% endif %}
{{ maps_base_dir }}/{{ site_name }} Location

Available Maps

{% if site_data.maps %}
{% for map_data in site_data.maps %}

{{ map_data.name }}

{% if map_data.created %} {{ map_data.created.strftime('%Y-%m-%d %H:%M') }} {% endif %} {% if map_data.size_mb %} {{ "%.1f"|format(map_data.size_mb) }} MB {% endif %}
{% for ext in map_data.files.keys() %} {{ ext.upper().lstrip('.') }} {% endfor %}
View
{% endfor %}
{% else %}

No maps found

No topology maps found for this site.

Back to All Sites
{% endif %}
{% endblock %}