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

{% trans "A list of episodes of one show" %}

{% block content %}

{% trans "Return to shows" %}

{% regroup object_list by show as show_list %} {% for show in show_list %}

{{ show.grouper.title }}

{{ show.grouper.subtitle }}

{% if show.grouper.explicity %}

{% trans "Explicit" %}

{% endif %}
{% if show.grouper.category.all %}
{% trans "Category" %}
{% for category in show.grouper.category.all|slice:":1" %}{{ category.name }}{% endfor %}
{% endif %}
{% trans "Author" %}
{% for author in show.grouper.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 %}
{% trans "fedd web/RSS" %}
{% trans "Subscribe Feed RSS 2.0 and iTunes" %}
{% trans "Subscribe Atom" %}
{% trans "Subscribe Media RSS" %}
{% if show.grouper.feedburner %}
{% trans "FeedBurner" %}
{% trans "Subscribe" %}
{% endif %} {% if show.grouper.itunes %}
iTunes
{% trans "Subscribe" %}
{% endif %}
{% if show.grouper.image %}
{{ show.grouper.organization }} show logo
{% endif %}

{% if show.grouper.summary %}{{ show.grouper.summary }}{% else %}{{ show.grouper.description|striptags }}{% endif %}

{% for episode in show.list %}

{{ episode.title }}

{{ episode.subtitle }}
{% if episode.image %}
{{ episode.title }} {% trans
{% endif %}

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

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