{% extends "base.html" %} {% block title %}Locate{% endblock %} {% block content %}
Case-framed, historical footprint work (missing-persons / investigative OSINT). Every located point is sourced and confidence-weighted; this is not real-time tracking. Use only within authorized scope.
{% if expired %}
{{ expired }} case(s) past their retention horizon.
{% endif %}

CASES

{% for c in cases %}
{{ c.subject or 'subject' }} {% if c.sensitivity == 'minor' %}MINOR{% endif %} {% if c.retention.expired %}RETENTION EXPIRED {% elif c.retention.set %}{{ c.retention.days_left }}d left{% endif %} {% if c.last_known %}last-known: {{ c.last_known.label }} ({{ "%.0f"|format((c.last_known.confidence or 0)*100) }}%){% endif %} {{ c.opened_by or '—' }} · {{ c.created_at[:10] if c.created_at }}
{% else %}

No cases yet — open one above.

{% endfor %} {% endblock %}