forked from rc/aircox
15 lines
231 B
HTML
15 lines
231 B
HTML
{% extends "aircox_web/program_base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block main %}
|
|
{{ block.super }}
|
|
|
|
{% if podcasts %}
|
|
{% for object in podcasts %}
|
|
{% include "aircox_web/podcast_item.html" %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|