{% extends "base.html" %} {% block title %}Voxint — transcript {{ run.id.hex[:8] }}{% endblock %} {% block body %}

← run

Transcript {{ run.id.hex[:8] }}

{{ run.media_item.source_path }}

{% if not lines %}

No transcript segments for this run.

{% else %} {% for ln in lines %}

[{{ "%.2f"|format(ln.start_seconds) }}–{{ "%.2f"|format(ln.end_seconds) }}] {{ ln.speaker }}: {{ ln.text }}

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