No cases found.
{% else %}
{% for case in cases %}
{{ case.user_slug }} — {{ case.case_id_short }} ({{ case.status }})
{% match case.oneliner %}
{% when Some with (t) %}
{{ t }}
{% when None %}
{% endmatch %}
{{ case.case_id }}
{% for rec in case.recordings %}
{% if rec.failed %}
Transcription failed — rename away the .failed suffix to retry.
{% else %}
{% match rec.transcript %}
{% when Some with (t) %}
{{ t }}
{% when None %}
Transcription pending…
{% endmatch %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}