{% extends "base.html" %} {% from "macros.html" import confidence_badge, status_badge %} {% block title %}trip-cluster{% endblock %} {% block navbar_title %}trip-cluster{% endblock %} {% block content %} {% if stats.clusters == 0 %}

No clusters yet

{% if stats.assets == 0 %}

Nothing ingested. Run categorize ingest then categorize cluster.

{% else %}

{{ stats.assets }} assets ingested, but this scope produced no clusters. Try a wider categorize ingest scope.

{% endif %}
{% else %}
Clusters

Needs attention first — lowest-confidence pending.

{% if stats.pending == 0 %}
All reviewed — “Apply all” or categorize apply.
{% endif %}
Write failures:
{% for c in clusters %}
{{ c.decided_name or c.suggested_name }} {{ confidence_badge(c.confidence) }}
{{ status_badge(c.status) }} {{ c.count }} {{ c.start_at[:10] }}
{% endfor %}
[ ] cluster · ← → grid · Enter open · A approve · N non-trip · S split (focus a photo) · X skip · Esc close
{% endif %} {% endblock %} {% block extra_scripts %}{% endblock %}