{% extends "base.html" %} {% block title %}{{ map_name }} - {{ site_name }} - Network Maps{% endblock %} {% block content %}

??? {{ map_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 %} {% if map_data.device_count %} {{ map_data.device_count }} devices {% endif %}
{% for ext, file_info in map_data.files.items() %} {{ ext.upper().lstrip('.') }} {% endfor %}
{% if '.svg' in map_data.files %}

Loading SVG...

{% else %}

No SVG Preview Available

This map doesn't have an SVG file for preview.

{% for ext, file_info in map_data.files.items() %} Download {{ ext.upper().lstrip('.') }} {% endfor %}
{% endif %}
100%

Loading network topology...

Available Files

{% for ext, file_info in map_data.files.items() %}
{% if ext == '.svg' %} {% elif ext == '.json' %} {% elif ext == '.graphml' %} {% elif ext == '.drawio' %} {% else %} {% endif %}
{{ ext.upper().lstrip('.') }} File
{{ (file_info.size_bytes / 1024 / 1024)|round(1) }} MB
{{ file_info.created.strftime('%m/%d/%Y %H:%M') if file_info.created else 'Unknown' }}
{% endfor %}
{% endblock %}