1
0
Fork 0

add support for title sort to ignore initial article

This commit is contained in:
Zach Flanders 2023-04-24 23:29:55 -05:00
parent ed5471c7ab
commit a94a4732ec
5 changed files with 58 additions and 2 deletions

View file

@ -24,7 +24,7 @@ class SortListForm(forms.Form):
sort_by = ChoiceField(
choices=(
("order", _("List Order")),
("title", _("Book Title")),
("sort_title", _("Book Title")),
("rating", _("Rating")),
),
label=_("Sort By"),