From 7cb1572e98a7bbfc8208e1c66d64603bca559b4d Mon Sep 17 00:00:00 2001 From: actlikewill Date: Thu, 5 Sep 2024 17:00:46 +0300 Subject: [PATCH] changes special facet options --- peachjam/views/gazette.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/peachjam/views/gazette.py b/peachjam/views/gazette.py index ce8e71751..5173f38ee 100644 --- a/peachjam/views/gazette.py +++ b/peachjam/views/gazette.py @@ -123,8 +123,8 @@ class GazetteYearView(YearMixin, FilteredDocumentListView): locality = None group_by_date = "month-year" special_facet_options = [ - {"name": _("Special Issue"), "value": "special"}, - {"name": _("Regular Issue"), "value": "not_special"}, + ("special", _("Special Issue")), + ("not_special", _("Regular Issue")), ] def get_form(self):