diff --git a/src/pretix/plugins/paypal/payment.py b/src/pretix/plugins/paypal/payment.py index b32f3c29b6..f0c7d00104 100644 --- a/src/pretix/plugins/paypal/payment.py +++ b/src/pretix/plugins/paypal/payment.py @@ -39,6 +39,10 @@ class Paypal(BasePaymentProvider): ('client_id', forms.CharField( label=_('Client ID'), + help_text=_('{text}').format( + text=_('Click here for a tutorial on how to obtain the required keys'), + docs_url='https://docs.pretix.eu/en/latest/user/payments/paypal.html' + ) )), ('secret', forms.CharField( diff --git a/src/pretix/plugins/stripe/payment.py b/src/pretix/plugins/stripe/payment.py index 6bb6217566..8d24ae277d 100644 --- a/src/pretix/plugins/stripe/payment.py +++ b/src/pretix/plugins/stripe/payment.py @@ -28,6 +28,10 @@ class Stripe(BasePaymentProvider): ('secret_key', forms.CharField( label=_('Secret key'), + help_text=_('{text}').format( + text=_('Click here for a tutorial on how to obtain the required keys'), + docs_url='https://docs.pretix.eu/en/latest/user/payments/stripe.html' + ) )), ('publishable_key', forms.CharField(