Skip to content

Commit

Permalink
Fix target search labels
Browse files Browse the repository at this point in the history
  • Loading branch information
np5 committed Sep 17, 2024
1 parent e8b4712 commit de9a245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zentral/contrib/santa/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,8 @@ class TargetSearchForm(forms.Form):
('90', '90 days')],
)
configuration = forms.ModelChoiceField(queryset=Configuration.objects.all(), empty_label="…")
has_yes_votes = forms.BooleanField(label="Yes votes")
has_no_votes = forms.BooleanField(label="No votes")
has_yes_votes = forms.BooleanField(label="Has upvotes")
has_no_votes = forms.BooleanField(label="Has downvotes")
todo = forms.BooleanField(label="Waiting for my ballot only", required=False, initial=False)
order_by = forms.ChoiceField(
label="Order by",
Expand Down

0 comments on commit de9a245

Please sign in to comment.