{% 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

MEDIA DURATION AGE PROGRESS CLAIMED BY Action
{% for e in entries %} {% set resolved = e.total_labels - e.unresolved_labels %}
{{ friendly_media_label(e.title, e.source_path) }}
{{ e.source_path }}
{{ format_duration(e.duration_seconds) }} {% if e.created_at %}{{ format_age(e.created_at, now=now) }} {% else %}โ€”{% endif %}
{{ resolved }} of {{ e.total_labels }} resolved
{{ e.claimed_by or "โ€”" }}
{% endfor %}
{% endif %} {% endblock %}