{% extends 'core/core.html' %} {% load static %} {% block title %}Sendereihen - {{ block.super }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block heading_title %}Sendereihen{% endblock %} {% block extra_css %}{{ filter.form.media.css }}{% endblock %} {% block extra_js %} {# explicit jquery call required https://django-autocomplete-light.readthedocs.io/en/master/tutorial.html#using-autocompletes-outside-the-admin #} {{ filter.form.media }} {% endblock %} {% block content %}
{% field filter.form.name %}
{% field filter.form.active %}
{% if radioprograms %} {% for rp in radioprograms %} {% endfor %}
Name (aktiv) übergeordneter Name Teaser Beschreibung
{% link rp %} {{ rp.active|boolean }} {% if rp.parent %}
{% link rp.parent %}{% endif %}
{{ rp.teaser }}{% if rp.teaser and rp.description %}

{% endif %}{{ rp.description }}

{% include 'core/_pagination.html' %} {% else %}
Keine Sendungsreihen gefunden.
{% endif %} {% endblock %}