{% extends "layout.html" %} {% block body %}
Capture
{% if recording %}
Recording
{% else %}
Idle
{% endif %}
Upload
{% if uploading %}
Uploading
{% else %}
Idle
{% endif %}
Upcoming
{{ upcoming }}
Processed
{{ processed }}

Preview Images

{% for p in preview %} {% else %} No preview image {% endfor %}

Recordings

{% if upcoming > limit_upcoming %} {% endif %} {% for e in upcoming_events %} {% endfor %} {% for e in recorded_events %} {% endfor %} {% if processed > limit_processed %} {% endif %}
Start End Status
{{ dtfmt(e.start) }} {{ dtfmt(e.end) }} upcoming
{{ dtfmt(e.start) }} {{ dtfmt(e.end) }} {{ e.status_str() }}
{% endblock %}