Check-in export: Fix filter options

This commit is contained in:
Raphael Michel
2023-06-22 09:04:05 +02:00
parent 3f47cf785c
commit 1eb1d8df5f
2 changed files with 6 additions and 5 deletions

View File

@@ -1754,9 +1754,9 @@ class CheckinListAttendeeFilterForm(FilterForm):
label=_('Check-in status'),
choices=(
('', _('All attendees')),
('3', pgettext_lazy('checkin state', 'Checked in but left')),
('2', pgettext_lazy('checkin state', 'Present')),
('1', _('Checked in')),
('2', pgettext_lazy('checkin state', 'Present')),
('3', pgettext_lazy('checkin state', 'Checked in but left')),
('0', _('Not checked in')),
),
required=False,