forked from CGM_Public/pretix_original
Fix field that was accidentally required
This commit is contained in:
@@ -43,7 +43,8 @@ class BankTransfer(BasePaymentProvider):
|
|||||||
('bank_details', self.form_field()),
|
('bank_details', self.form_field()),
|
||||||
('omit_hyphen', forms.BooleanField(
|
('omit_hyphen', forms.BooleanField(
|
||||||
label=_('Do not include a hypen in the payment reference.'),
|
label=_('Do not include a hypen in the payment reference.'),
|
||||||
help_text=_('This is required in some countries.')
|
help_text=_('This is required in some countries.'),
|
||||||
|
required=False
|
||||||
)),
|
)),
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user