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

Triage

{{ state.photos | selectattr('tag', 'ne', 'untagged') | list | length }} / {{ state.photos | length }} tagged
{% for day, photos in photos_by_day.items() %}

{{ day }}

{% for photo in photos %}
{{ photo.local_datetime[11:16] }}
{% if photo.tag != 'untagged' and photo.tag != 'skip' %}
{{ photo.tag[0] | upper }}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}