From d90686f35277a9199128d1dd77788a11a38b4134 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 14 Mar 2019 15:15:51 +0100 Subject: [PATCH] Bank transfer: Ask people if they understood how it works --- src/pretix/plugins/banktransfer/payment.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pretix/plugins/banktransfer/payment.py b/src/pretix/plugins/banktransfer/payment.py index b57c2efcac..bd0548d04d 100644 --- a/src/pretix/plugins/banktransfer/payment.py +++ b/src/pretix/plugins/banktransfer/payment.py @@ -24,6 +24,14 @@ class BankTransfer(BasePaymentProvider): @staticmethod def form_fields(): return OrderedDict([ + ('ack', + forms.BooleanField( + label=_('I have understood that people will pay the ticket price directly to my bank account and ' + 'pretix cannot automatically know what payments arrived. Therefore, I will either mark ' + 'payments as complete manually, or regularly import a digital bank statement in order to ' + 'give pretix the required information.'), + required=True, + )), ('bank_details_type', forms.ChoiceField( label=_('Bank account type'), widget=forms.RadioSelect,