{% extends "./base.html" %} {% load i18n %} {% block title %} {% if episode %} {% blocktrans with title=episode.title %}Transcript: {{ title }}{% endblocktrans %} {% else %} {% translate "Transcript" %} {% endif %} {% endblock title %} {% block content %}

{% if episode %} {% blocktrans with title=episode.title %}Transcript: {{ title }}{% endblocktrans %} {% else %} {% translate "Transcript" %} {% endif %}

{% if episode %}

ยท {% translate "Back to episode" %}

{% translate "Full episode transcript. Timestamps refer to the audio playback." %}

{% endif %}
{% if transcript.transcripts %} {% for segment in transcript.transcripts %}
{% if segment.speaker %} {{ segment.speaker }} {% endif %} {% if segment.start %} {% endif %}

{{ segment.text }}

{% endfor %} {% else %}

{% translate "No transcript segments available." %}

{% endif %}
{% endblock content %}