Fleet Vehicles
{{ vehicles|length }} vehicles
| 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 %}
{% endfor %}
{% if not recent_alerts %}
✅ No active alerts
{% endif %}