{% extends "base.html" %} {% block title %}{{ podcast.title }}{% endblock %} {% block content %}
{{ podcast.author or 'Unknown Author' }}
{% if podcast.description %}{{ podcast.description[:200] }}{% if podcast.description|length > 200 %}...{% endif %}
{% endif %}Episode | Published | Duration | Status | Actions |
---|---|---|---|---|
{% if episode.episode_number %}
{% if episode.season %}
S{{ '%02d' % episode.season }}E{{ '%02d' % episode.episode_number|int if episode.episode_number|string|isdigit() else episode.episode_number }}
{% else %}
#{{ '%02d' % episode.episode_number|int if episode.episode_number|string|isdigit() else episode.episode_number }}
{% endif %}
{% endif %}
{{ episode.title }}
{% if episode.explicit %}
E
{% endif %}
{% if episode.description %}
{{ episode.description[:100] }}{% if episode.description|length > 100 %}...{% endif %}
{% endif %}
|
{{ episode.published_date.strftime('%Y-%m-%d') if episode.published_date else 'Unknown' }}
|
{% if episode.duration %}
{{ (episode.duration / 60)|int }}m
{% else %}
-
{% endif %}
|
{% if episode.downloaded %} Downloaded {% elif episode.download_error %} Error {{ episode.status_code }} {% else %} Available {% endif %} | {% if not episode.downloaded %} Download {% else %} {% endif %} {% if episode.audio_url %} Stream {% endif %} {% if episode.download_error %} {% endif %} |
Episode | Published | Duration | Status | Actions |
---|---|---|---|---|
{% if episode.episode_number %}
#{{ '%02d' % episode.episode_number|int if episode.episode_number|string|isdigit() else episode.episode_number }}
{% endif %}
{{ episode.title }}
{% if episode.explicit %}
E
{% endif %}
{% if episode.description %}
{{ episode.description[:100] }}{% if episode.description|length > 100 %}...{% endif %}
{% endif %}
|
{{ episode.published_date.strftime('%Y-%m-%d') if episode.published_date else 'Unknown' }}
|
{% if episode.duration %}
{{ (episode.duration / 60)|int }}m
{% else %}
-
{% endif %}
|
{% if episode.downloaded %} Downloaded {% elif episode.download_error %} Error {{ episode.status_code }} {% else %} Available {% endif %} | {% if not episode.downloaded %} Download {% else %} {% endif %} {% if episode.audio_url %} Stream {% endif %} {% if episode.download_error %} {% endif %} |
No episodes found for this podcast.