moviewyrm/bookwyrm/templates/book/format_filter.html

17 lines
547 B
HTML
Raw Normal View History

2021-03-29 17:58:35 +00:00
{% extends 'snippets/filters_panel/filter_field.html' %}
{% load i18n %}
{% block filter %}
<label class="label is-block" for="id_format">{% trans "Format:" %}</label>
<div class="select">
2021-03-29 18:16:34 +00:00
<select id="id_format" name="format">
2021-03-29 18:13:23 +00:00
<option value="">{% trans "Any" %}</option>
2021-03-29 17:58:35 +00:00
{% for format in formats %}{% if format %}
2021-03-29 18:13:23 +00:00
<option value="{{ format }}" {% if request.GET.format == format %}selected{% endif %}>
{{ format|title }}
</option>
2021-03-29 17:58:35 +00:00
{% endif %}{% endfor %}
</select>
</div>
{% endblock %}