{% extends "base.html" %} {% load i18n %} {% block title %}{% trans 'Podcasts' %} · {{ block.super }}{% endblock %} {% block content %}

{% trans 'Podcasts' %}

{% blocktrans count show_count=page_obj.paginator.count %}

{{ show_count }} show

{% plural %}

{{ show_count }} shows

{% endblocktrans %} {% if show_list %} {% for show in show_list %}

{{ show.title }}

{{ show.title }} artwork
{% if show.description %}

{{ show.description|safe }}

{% endif %} {% endfor %} {% include 'podcast/pagination.html' %} {% endif %} {% endblock %}