{% extends "base.html" %} {% block title %}Dashboard - ADS-B Anomaly Detection{% endblock %} {% block content %}

ADS-B Anomaly Detection Dashboard

{{ aircraft_count }}
Active Aircraft
{{ alerts_count }}
Recent Alerts
{{ total_aircraft_tracked }}
Total Aircraft Tracked
{{ aircraft_tracked_24h }}
Aircraft Tracked (24h)

Live Aircraft Map

Active Sessions ({{ aircraft_count }})

View All Sessions
{% if aircraft.len() > 0 %} {% for aircraft in aircraft %} {% endfor %}
Aircraft Flight
{{ aircraft.hex }}
{% match aircraft.flight %} {% when Some with (flight) %}{{ flight }} {% when None %} {% endmatch %}
{% else %}
✈️
No active sessions
Aircraft will appear here when they start transmitting
{% endif %}

Recent Alerts ({{ alerts_count }})

{% for alert in alerts %}
{{ alert.hex }}
{{ alert.anomaly_type }}
{% else %}
No recent alerts
{% endfor %}
{% endblock %}