{% extends "aircox/page_list.html" %}
{% comment %}Display a list of Pages{% endcomment %}
{% load i18n aircox %}
{% block breadcrumbs %}
{% if parent and model.list_url_name %}
{% include "./widgets/breadcrumbs.html" with page=parent %}
{{ model|verbose_name:True }}
{% elif page.title == "Podcasts" and not category %}
{% elif page and model.list_url_name %}
{{ page.title }}
{% if category %}
{{ category.title }}
{% endif %}
{% else %}
{{ model|verbose_name:True }}
{% if category %}
{{ category.title }}
{% endif %}
{% endif %}
{% endblock %}
{% block content-container %}{% endblock %}