From 80c9d1ff9ee19fba8f484e7c1c429e00c5742a1e Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 14 Oct 2019 13:55:19 +0200 Subject: [PATCH] Allow requiring invoice name even if invoice address is required --- src/pretix/control/forms/event.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index 8c6616b455..9a32ad66be 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -753,9 +753,6 @@ class InvoiceSettingsForm(SettingsForm): invoice_name_required = forms.BooleanField( label=_("Require customer name"), required=False, - widget=forms.CheckboxInput( - attrs={'data-inverse-dependency': '#id_invoice_address_required'} - ), ) invoice_address_vatid = forms.BooleanField( label=_("Ask for VAT ID"),