Merge branch 'main' into production

This commit is contained in:
Mouse Reeve 2021-05-20 18:48:57 -07:00
commit 5ba6d8321f

View file

@ -1,5 +1,5 @@
{% extends 'snippets/filters_panel/filter_field.html' %}
{% load i18n %}{% load utilities %}
{% load i18n %}
{% block filter %}
<label class="label is-block" for="id_format">{% trans "Format:" %}</label>
@ -8,7 +8,7 @@
<option value="">{% trans "Any" %}</option>
{% for format in formats %}{% if format %}
<option value="{{ format }}" {% if request.GET.format == format %}selected{% endif %}>
{{ format|book_title }}
{{ format|title }}
</option>
{% endif %}{% endfor %}
</select>