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

{{ weekday }} · {{ day }}

{% if pending_count %}
{{ pending_count }} clip{% if pending_count != 1 %}s{% endif %} still being converted — refresh to see them when ready.
{% endif %}

Events

{% if events %} {% else %}

No motion events for this day.

{% endif %}
Browse all snapshots
{% if hours %}
Video clips ({{ hours | length }} hour{% if hours | length != 1 %}s{% endif %}) {% for hour, clips in hours.items() %}
{{ hour[-2:] }}:00
{% for clip in clips %}
{{ clip["camera"] }} {% if 'M' in (clip['flags'] or '') %}Motion{% endif %}
{% include "_keep_btn.html" %}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}