{% if podcast.podcast_cached_cover_art %}
{% endif %}
{{ podcast.description|striptags|urlize }}
{% extends "podcast_analyzer/app_base.html" %} {% load i18n %} {% block extratitle %}{% translate "Episodes" %} - {{ podcast.title }} - {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block extra_controls %} {% endblock %} {% block content %}
{% if podcast.podcast_cached_cover_art %}
{% endif %}
{{ podcast.description|striptags|urlize }}
{% translate "Ep #" %} | {% if has_seasons %}{% translate "Season" %} | {% endif %}{% translate "Title" %} | {% translate "Summary" %} | {% translate "Release Date" %} | {% translate "Duration" %} |
{{ episode.ep_num }} | {% if has_seasons %}{% if episode.season %}{{ episode.season.season_number }}{% endif %} | {% endif %}{{ episode.title }} | {{ episode.show_notes|truncatewords:10|default_if_none:"N/A" }} | {{ episode.release_datetime|date:"F j, Y" }} | {{ episode.duration }} |
{% translate "No episodes found." %}
{% endif %} {% include "podcast_analyzer/includes/pagination.html" %} {% endblock %}