{% extends "base.html" %} {% block title %}Recordings{% endblock %} {% block content %}

Recordings

{% if recording_dates | length == 0 %} {% endif %}
{% for recording_date in recording_dates %}

{% for recording in recordings[recording_date] %}

{{ format_time(recording["time"]) }} {{ format_duration(recording["duration"]) }}

{% endfor %}
{% endfor %}
{% endblock %}