{% extends "base_list.html" %}
{% block title %}Podcasts{% endblock %}
{% block lists %}
{% if podcasts_this_week or podcasts_this_month %}
{% if podcasts_this_week or podcasts_this_month %}
Podcasts Listened
{% if podcasts_this_week %}
This Week
{% for item in podcasts_this_week %}
| {{item.podcast}} |
{{item.count}} episodes |
{% empty %}
| No podcasts listened this week |
{% endfor %}
{% endif %}
{% if podcasts_this_month %}
This Month
{% for item in podcasts_this_month %}
| {{item.podcast}} |
{{item.count}} episodes |
{% empty %}
| No podcasts listened this month |
{% endfor %}
{% endif %}
{% endif %}
{% endif %}