{% extends "base.html" %} {% block title %}Events — FSD Disengagement Studio{% endblock %} {% block content %}

Events

{{ events | length }} matching
{% if events %} {% for ev in events %} {% endfor %}
When Firmware Cause Speed Confidence Summary
{{ ev.timestamp.strftime("%Y-%m-%d %H:%M") }} {{ ev.firmware_version }} {% if ev.classification_cause %} {{ ev.classification_cause }} {% else %} unclassified {% endif %} {{ "%.1f mph" | format((ev.speed_at_transition_mps or 0) * 2.23694) }} {{ "%.2f" | format(ev.confidence or 0) }} {{ ev.classification_summary or "(no summary)" }}
{% else %}

No events match the current filters.

{% endif %}
{% endblock %}