{% extends "base.html" %} {% block content %}

Triage

{{ state.photos | selectattr('tag', 'ne', 'untagged') | list | length }} / {{ state.photos | length }} tagged
{# ── Desktop grid (hidden on mobile) ── #}
{% for day, photos in photos_by_day.items() %}

{{ day }}

{% for photo in photos %}
{{ photo.local_datetime[11:16] }}
{% if photo.tag == 'journal' %}
J
{% elif photo.tag == 'story' %}
S
{% elif photo.tag == 'skip' %}
X
{% endif %}
{% endfor %}
{% endfor %}
{# ── Lightbox overlay (desktop) ── #} {# ── Mobile card UI (hidden on desktop) ── #}
{% endblock %} {% block extra_scripts %} {% endblock %}