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

Missing-clip warnings ({{ stale_after_hours }}h cutoff)

{{ total_in_view }} stale record(s) ← back to all pending

These are Path B detections that were queued by fsd-studio listen but never matched to a saved Dashcam clip. Possible causes:

{% if rows %} {% for r in rows %} {% endfor %}
Detected at Speed Pre → post state GPS
{{ r.timestamp }} {{ "%.1f m/s" | format(r.speed_mps or 0) }} {% if r.pre_state and r.post_state %} {{ r.pre_state }} → {{ r.post_state }} {% else %} {% endif %} {% set lat = r.get('latitude') %} {% set lon = r.get('longitude') %} {% if lat is not none and lon is not none %} {{ "%.4f" | format(lat) }}, {{ "%.4f" | format(lon) }} {% else %} {% endif %}
{% else %}

No stale records — every Path B detection in the last {{ stale_after_hours }}h has been linked to a saved clip.

{% endif %}
{% endblock %}