{% extends "network/base.html" %} {% block title %}Dashboard — Network Design Canvas{% endblock %} {% block content %}
{% if all_projects %}
{% if active_project %} Showing: {{ active_project.name }} {% endif %}
{% endif %}
{{ stats.topologies }}
Topologies
{{ stats.simulations }}
Simulations Run
{{ stats.templates }}
Templates Available
12
Object Types

Recent Topologies

{% if topologies %}{% endif %}
{% if topologies %} {% for t in topologies %} {% endfor %}
Name Classification Nodes Links Last Updated Actions
{{ t.name }} {% if t.description %}
{{ t.description[:60] }}
{% endif %}
{{ t.classification }} {{ t.node_count or 0 }} {{ t.edge_count or 0 }} {{ t.updated_at[:16].replace('T',' ') if t.updated_at else '—' }} V MC C
{% else %} {% endif %}

Quick Templates

View all →
{% for t in templates %}
{{ t.category }}
{{ t.name }}
{% endfor %}

Recent Simulations

{% if simulations %}{% endif %}
{% if simulations %}
{% for s in simulations %}
{{ s.sim_type.upper() }} {{ s.topology_name }}
{{ s.summary }}
{{ s.ran_at[:16].replace('T',' ') if s.ran_at else '' }}
{% endfor %}
{% else %}

No simulations yet. Open a topology and click Simulate.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}