{% extends "base.html" %} {% block content %}
{% if hours %} {% else %}
{% endif %}

{{ day }}

{% if pending_count %}
{{ pending_count }} clip{% if pending_count != 1 %}s{% endif %} still being converted — refresh to see them when ready.
{% endif %} {% if hours %} {% for hour, clips in hours.items() %}
{{ hour[-2:] }}:00
{% for clip in clips %}
{{ clip["camera"] }} {% if 'M' in (clip['flags'] or '') %}Motion{% endif %} {% if 'F' in (clip['flags'] or '') %}First frame{% endif %} {{ clip["filename"] }}
{% include "_keep_btn.html" %}
{% endfor %}
{% endfor %} {% else %}

No clips for this day.

{% endif %}
{% endblock %}