{% extends "base.html" %} {% block title %}{{ podcast.title }}{% endblock %} {% block content %}
{% if podcast.image_url %} {{ podcast.title }} {% else %}
No Image
{% endif %}

{{ podcast.title }}

{{ podcast.author }}

{{ podcast.description }}

Last updated: {{ podcast.last_updated.strftime('%Y-%m-%d %H:%M') if podcast.last_updated else 'Never' }} Last checked: {{ podcast.last_checked.strftime('%Y-%m-%d %H:%M') if podcast.last_checked else 'Never' }}

Episodes ({{ episodes|length }})

{% if episodes %}
{% for episode in episodes %}

{{ episode.title }}

{{ episode.published_date.strftime('%Y-%m-%d') if episode.published_date else 'Unknown date' }}

{{ episode.description|truncate(200) }}

{% endfor %}
{% else %}

No episodes found for this podcast. Try clicking the "Update Episodes" button to fetch the latest episodes.

{% endif %}
{% endblock %}