{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block breadcrumb %}Dashboard{% endblock %} {% block content %}
{{stats.total}}
Total Incidents
{{stats.open}}
Open
{{stats.progress}}
In Progress
{{stats.resolved}}
Resolved
{{stats.critical}}
Critical
Recent Incidents
View all โ†’
{% if incidents %}
{% for i in incidents %} {% endfor %}
RefTitleSeverityStatusAssignedCreated
{{i.ref}} {{i.title}} {{i.severity}} {% if i.status=='Open' %}Open {% elif i.status=='In Progress' %}In Progress {% elif i.status=='Resolved' %}Resolved {% else %}{{i.status}}{% endif %} {{i.assigned_to or 'โ€”'}} {{i.created_at[:10]}} View
{% else %}
๐Ÿ“‹
No incidents yet
Start logging your first network incident to see it here.
Log first incident
{% endif %}
By Severity
{% for label, count, cls in [ ('Critical', stats.critical, '#DC2626'), ('High', stats.high, '#EA580C'), ('Medium', stats.medium, '#D97706'), ('Low', stats.low, '#16A34A') ] %} {% if stats.total > 0 %}
{{label}}{{count}}
{% endif %} {% endfor %} {% if stats.total == 0 %}
No data yet
{% endif %}
Recent Activity
{% if recent_tl %}
{% for e in recent_tl %}
{{e.ref}} ยท {{e.timestamp[:16]}}
{{e.action}}
{% if e.note %}
{{e.note[:80]}}{% if e.note|length > 80 %}โ€ฆ{% endif %}
{% endif %}
{% endfor %}
{% else %}
No activity yet
{% endif %}
{% endblock %}