forked from rc/aircox
28 lines
974 B
HTML
28 lines
974 B
HTML
{% 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 %}
|
|
<a href="{% url model.list_url_name %}">{{ model|verbose_name:True }}</a>
|
|
{% elif page.title == "Podcasts" and not category %}
|
|
{% elif page and model.list_url_name %}
|
|
<a href="{% url model.list_url_name %}">{{ page.title }}</a>
|
|
{% if category %}
|
|
<a href="{% url request.resolver_match.url_name category_slug=category.slug %}">
|
|
{{ category.title }}
|
|
</a>
|
|
{% endif %}
|
|
{% else %}
|
|
<a href="{% url request.resolver_match.url_name %}">{{ model|verbose_name:True }}</a>
|
|
{% if category %}
|
|
<a href="{% url request.resolver_match.url_name category_slug=category.slug %}">
|
|
{{ category.title }}
|
|
</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content-container %}{% endblock %}
|