{% extends "podcast/base.html" %} {% load i18n %} {% block allcontent %}

{% trans "A detail of one episode of one show" %}

{% block content %}

{% trans "Return to episodes" %}

{{ object.title }}

{% if object.subtitle %}

{{ object.subtitle }}

{% endif %} {% if object.image %}
{{ object.title }} {% trans
{% endif %}
{% trans "Date" %}
{{ object.date|date:"F g, Y, g:m a" }}
{% trans "Show" %}
{{ object.show.title }}
{% trans "Author" %}
{% for author in object.author.all %}
{% if author.email %}{% endif %}{% if author.first_name or author.last_name %}{% if author.first_name and author.last_name %}{{ author.first_name }} {{ author.last_name }}{% endif %}{% if author.first_name and not author.last_name %}{{ author.first_name }}{% endif %}{% if author.last_name and not author.first_name %}{{ author.last_name }}{% endif %}{% else %}{{ author.username }}{% endif %}{% if author.email %}{% endif %}
{% endfor %}
feed web/RSS
{% trans "Subscribe Feed RSS 2.0 and iTunes" %}
{% trans "Subscribe Atom" %}
{% trans "Subscribe Media RSS" %}
{% if object.show.feedburner %}
FeedBurner
{% trans "Subscribe" %}
{% endif %} {% if object.show.itunes %}
iTunes
{% trans "Subscribe" %}
{% endif %}

{% if object.summary %}{{ object.summary }}{% else %}{{ object.description|striptags }}{% endif %}

{% trans "Listen this episode" %}

{% if object.captions %}

{% trans "Download the closed captions" %}.

{% endif %} {% endblock %}
{% endblock %} {% block footer %}

© {% now "Y" %} {{ object.show.organization }}. {% trans "Subscribe" %}.

{% endblock %}