{% extends "base.html" %} {% block title %}Home{% endblock %} {% block content %}
{% if recent_podcasts %} {% for podcast in recent_podcasts %} {% endfor %}
Podcast Title Network Quality Profile Next Airing Previous Airing Original Language Added
{{ podcast.title }}
{{ podcast.author or 'Unknown' }}
{{ podcast.author or 'Unknown' }} Any - {{ podcast.last_updated.strftime('%Y-%m-%d') if podcast.last_updated else 'Never' }} English {{ podcast.last_updated.strftime('%Y-%m-%d') if podcast.last_updated else 'Unknown' }}
{% else %}

No podcasts found

Get started by adding your first podcast

Add Podcast
{% endif %}
{% endblock %}