Fleet Vehicles {{ vehicles|length }} vehicles
{% for v in vehicles %} {% endfor %} {% if not vehicles %} {% endif %}
Vehicle Plate Status Speed Fuel Location
{{ v.year }} {{ v.make }} {{ v.model }} {{ v.license_plate }} {{ v.status.value | replace("_", " ") }} {{ "%.0f"|format(v.current_speed) }} km/h
{{ "%.0f"|format(v.current_fuel_level) }}%
{% if v.current_latitude %} {{ "%.4f"|format(v.current_latitude) }}, {{ "%.4f"|format(v.current_longitude) }} {% else %} — {% endif %}
No vehicles registered. Use the API to add vehicles.
Recent Alerts {{ recent_alerts|length }}
{% for alert in recent_alerts %}
{% if alert.severity.value == 'critical' %}⛔ {% elif alert.severity.value == 'warning' %}⚠️ {% else %}ℹ️{% endif %}
{{ alert.message }}
Vehicle #{{ alert.vehicle_id }} · {{ alert.created_at.strftime('%H:%M:%S') }}
{% endfor %} {% if not recent_alerts %}
✅ No active alerts
{% endif %}