{% if is_admin %}
{{ rec.filename }}
{% endif %}
{% if rec.failed %}
Transkription fehlgeschlagen
{% else %}
{% match rec.transcript %}
{% when TranscriptState::Content with (t) %}
{{ t }}
{% when TranscriptState::Silent %}
(stille Aufnahme)
{% when TranscriptState::Pending %}
{% if transcribe_busy %}
Transkription läuft…
{% else %}
Transkription ausstehend.
{% endif %}
{% endmatch %}
{% endif %}
{% endfor %}