{% 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 %}
{% for obj in object_list.all %} {{obj.episodes}} {% for episode in obj.podcastepisode_set.all %} {% endfor %} {% endfor %}
Episode Podcast Scrobbles
{{episode}} {{obj}} {{episode.scrobble_set.count}}
{% endblock %}