{% 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 %} {% empty %} {% endfor %}
{{item.podcast}} {{item.count}} episodes
No podcasts listened this week
{% endif %} {% if podcasts_this_month %}

This Month

{% for item in podcasts_this_month %} {% empty %} {% endfor %}
{{item.podcast}} {{item.count}} episodes
No podcasts listened this month
{% endif %}
{% endif %}
{% endif %}
{% include "_scrobblable_list.html" %}
{% endblock %}