From 65a2ea3935b6261c7d4be9a49615936295a24664 Mon Sep 17 00:00:00 2001 From: Felix Rindt Date: Mon, 28 May 2018 15:03:42 +0200 Subject: [PATCH] Fix #922 -- make widget compat mode not required (#926) Fixes #922 --- 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 245e25fbd3..fd664faea8 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -984,6 +984,7 @@ class WidgetCodeForm(forms.Form): ) compatibility_mode = forms.BooleanField( label=_("Compatibility mode"), + required=False, help_text=_("Our regular widget doesn't work in all website builders. If you run into trouble, try using " "this compatibility mode.") )