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

Past Recordings

{% if archives|length > 0 %} {% for item in archives %} {% endfor %}
  Created Duration Status
{% if item.status == "available" and item.url is defined and item.url|length > 0 %} {% endif %} {{ item.name|default("Untitled") }} {% if item.status == "available" and item.url is defined and item.url|length > 0 %} {% endif %} {{ (item.createdAt//1000)|date }} {{ item.duration }} seconds {{ item.status }} {% if item.status == "available" %} Delete {% else %}   {% endif %}
{% else %}

There are no archives currently. Try making one in the host view.

{% endif %}
{% endblock %}