mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Warn more strongly about Stripe Sofort
This commit is contained in:
@@ -188,8 +188,14 @@ class StripeSettingsHolder(BasePaymentProvider):
|
|||||||
forms.BooleanField(
|
forms.BooleanField(
|
||||||
label=_('SOFORT'),
|
label=_('SOFORT'),
|
||||||
disabled=self.event.currency != 'EUR',
|
disabled=self.event.currency != 'EUR',
|
||||||
help_text=_('Needs to be enabled in your Stripe account first. Note that, despite the name, '
|
help_text=(
|
||||||
'payments are not immediately confirmed but might take some time.'),
|
_('Needs to be enabled in your Stripe account first.') +
|
||||||
|
'<div class="alert alert-warning">%s</div>' % _(
|
||||||
|
'Despite the name, Sofort payments via Stripe are <strong>not</strong> processed '
|
||||||
|
'instantly but might take up to <strong>14 days</strong> to be confirmed in some cases. '
|
||||||
|
'Please only activate this payment method if your payment term allows for this lag.'
|
||||||
|
)
|
||||||
|
),
|
||||||
required=False,
|
required=False,
|
||||||
)),
|
)),
|
||||||
('cc_3ds_mode',
|
('cc_3ds_mode',
|
||||||
|
|||||||
Reference in New Issue
Block a user