From 8265c302adc25da4e3427e22a2d7926da85c7c35 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 25 Sep 2017 13:33:41 +0200 Subject: [PATCH] Fix missing required=False --- 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 5386c9f087..bc29f1bf87 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -344,6 +344,7 @@ class EventSettingsForm(SettingsForm): help_text=_('This text needs to be confirmed by the user before a purchase is possible. You could for example ' 'link your terms of service here. If you use the Pages feature to publish your terms of service, ' 'you don\'t need this setting since you can configure it there.'), + required=False, widget=forms.Textarea(attrs={"rows": 3}) ) contact_mail = forms.EmailField(