mirror of
https://github.com/pretix/pretix.git
synced 2026-05-11 16:13:59 +00:00
Fix TypeError in failing bulk-checkin-action
This commit is contained in:
@@ -252,7 +252,7 @@ class CheckInListBulkActionView(CheckInListQueryMixin, EventPermissionRequiredMi
|
|||||||
'event': self.request.event.slug,
|
'event': self.request.event.slug,
|
||||||
'organizer': self.request.event.organizer.slug,
|
'organizer': self.request.event.organizer.slug,
|
||||||
'list': self.list.pk
|
'list': self.list.pk
|
||||||
}) + ('?' + value[1] if value[1] else '')
|
}) + ('?' + value[1] if value and value[1] else '')
|
||||||
|
|
||||||
|
|
||||||
class CheckinListList(EventPermissionRequiredMixin, PaginationMixin, ListView):
|
class CheckinListList(EventPermissionRequiredMixin, PaginationMixin, ListView):
|
||||||
|
|||||||
Reference in New Issue
Block a user