{% extends "base.html" %} {% block title %}Podcasts{% endblock %} {% block content %}
{{ podcasts|length }} Podcasts
{% if podcasts %} {% for podcast in podcasts %} {% endfor %}
Title Author Episodes Last Updated Status Actions
{% if podcast.image_url %} {{ podcast.title }} {% else %}
No Image
{% endif %}
{{ podcast.author or 'Unknown' }}
{{ podcast.episodes.count() }}
{% if podcast.last_updated %} {{ podcast.last_updated.strftime('%Y-%m-%d') }} {% else %} Never {% endif %}
{% if podcast.episodes.count() > 0 %} Active {% else %} Pending {% endif %}
{% else %}

No Podcasts Found

You haven't added any podcasts yet.

Add Your First Podcast
{% endif %}
{% endblock %}