{% extends "base.html" %} {% block title %}Voxint — review{% endblock %} {% block cb_breadcrumb %}review /{% endblock %} {% block cb_summary %} {%- if entries %}{{ entries|length }} recording{{ "s" if entries|length != 1 else "" }} waiting{% else %}queue clear{% endif -%} {% endblock %} {% block body %} {% if not entries %}

Nothing to review right now. Every finished recording either had its speakers confirmed by you or matched confidently by Voxint.

{% else %}

RECORDINGS TO REVIEW

Sort: Oldest first · Most voices to resolve

RECORDING DURATION AGE PROGRESS {% if shell.multi_user %}CLAIMED BY{% endif %} Action
{% for e in entries %} {% set resolved = e.total_labels - e.unresolved_labels %}
{{ friendly_media_label(e.title, e.source_path) }} {% set fl = folder_label(e.source_path) %} {% if fl or e.created_at %}
{% if fl %}{{ fl }}{% endif %}{% if fl and e.created_at %} · {% endif %}{% if e.created_at %}{{ e.created_at.strftime("%b %d, %Y") }}{% endif %} {% endif %}
{{ format_duration(e.duration_seconds) }} {% if e.created_at %}{{ format_age(e.created_at, now=now) }} {% else %}{% endif %}
{{ resolved }} of {{ e.total_labels }} resolved
{% if shell.multi_user %}{{ e.claimed_by or "—" }}{% endif %}
{% endfor %}
{% endif %} {% endblock %}