{% extends "base.html" %} {% block title %}Event {{ event.id }} — FSD Disengagement Studio{% endblock %} {% block content %}
{{ event.classification_cause or "unclassified" }} confidence {{ "%.2f" | format(event.confidence or 0) }}
| Event ID | {{ event.id }} |
|---|---|
| Timestamp | {{ event.timestamp.isoformat() }} |
| Firmware | {{ event.firmware_version }} |
| FSD version | {{ event.fsd_version or "(unknown)" }} |
| Transition | {{ event.pre_state }} → {{ event.post_state }} |
| Speed at transition | {{ "%.1f mph" | format((event.speed_at_transition_mps or 0) * 2.23694) }} ({{ "%.2f m/s" | format(event.speed_at_transition_mps or 0) }}) |
| GPS | {{ event.latitude or "?" }}, {{ event.longitude or "?" }} |
| Pre clip | {{ event.pre_clip_path }} |
| Post clip | {{ event.post_clip_path }} |
| Classified at | {{ event.classified_at.isoformat() if event.classified_at else "(not yet)" }} |
{{ event.notes }}
v0.2 will embed a trimmed <video> for the ±5s window
around the transition, with SEI overlay. Today: open the source clip directly.