forked from CGM_Public/pretix_original
Allow to disable self-choice seating
This commit is contained in:
@@ -474,7 +474,7 @@ class RedeemView(NoSearchIndexViewMixin, EventViewMixin, TemplateView):
|
||||
context['items_by_category'] = item_group_by_category(items)
|
||||
|
||||
context['subevent'] = self.subevent
|
||||
context['seating_available'] = self.voucher.seating_available(self.subevent)
|
||||
context['seating_available'] = self.request.event.settings.seating_choice and self.voucher.seating_available(self.subevent)
|
||||
|
||||
context['new_tab'] = (
|
||||
'require_cookie' in self.request.GET and
|
||||
|
||||
Reference in New Issue
Block a user