From b13368d61424a689d7d893cf97eb305f07fefcc7 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 12 Dec 2025 08:59:07 +0100 Subject: [PATCH] Event creation: Do not declare tax rate as optional (fixes #4794) (#5619) --- src/pretix/control/forms/event.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index 9a5dd1be0e..f495257849 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -207,6 +207,7 @@ class EventWizardBasicsForm(I18nModelForm): 'Sample Conference Center\nHeidelberg, Germany' ) self.fields['slug'].widget.prefix = build_absolute_uri(self.organizer, 'presale:organizer.index') + self.fields['tax_rate']._required = True # Do not render as optional because it is conditionally required if self.has_subevents: del self.fields['presale_start'] del self.fields['presale_end']