forked from rc/aircox
24 lines
606 B
HTML
24 lines
606 B
HTML
{% extends "aircox/basepage_list.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block filters %}
|
|
{{ block.super }}
|
|
<div class="field is-horizontal">
|
|
<div class="field-label">
|
|
<label class="label">{% translate "Podcasts" %}</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="checkbox">
|
|
<input type="checkbox" class="checkbox" name="podcast" value="True"
|
|
{% if filterset_data.podcast %}checked{% endif %} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block list-container %}
|
|
{% with list_class="list-podcasts" %}
|
|
{{ block.super }}
|
|
{% endwith %}
|
|
{% endblock %}
|