{% extends 'base.html' %} {% block title %}Run #{{ run.display_id }} - TLS Analyzer{% endblock %} {% block content %}

Run #{{ run.display_id }} — {{ run.created_at|date:"Y-m-d H:i" }}

Status: {{ run.get_status_display }}

CSV: {% if run.sqlite_table %}已存储至SQLite: {{ run.sqlite_table }}{% else %}{{ run.csv_glob }}{% endif %}

{{ run.total_flows|default:"0" }}
Total Flows
{{ run.entity_count|default:"0" }}
Entities
{{ run.cluster_count|default:"0" }}
Clusters

Clusters

View Cluster Overview {% if clusters %} {% for c in clusters %} {% endfor %}
Cluster Size Proportion Silhouette
#{{ c.cluster_label }} {{ c.size }} {{ c.proportion|floatformat:2 }} {{ c.silhouette_score|floatformat:4|default:"-" }} Detail
{% else %}

No clusters yet.

{% endif %}
{% endblock %}