X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a9b45b86d91d95987e15f5113695d7c27e6d66a2..4cbcf8cac5e8cad592d9d84d76408249ccca8112:/src/club/payment_methods.py diff --git a/src/club/payment_methods.py b/src/club/payment_methods.py index 8d1ad7be9..4a596e45b 100644 --- a/src/club/payment_methods.py +++ b/src/club/payment_methods.py @@ -150,13 +150,16 @@ class PayPal(PaymentMethod): is_onetime = False def invite_widget(self, schedule, request): - return render_to_string( - 'club/payment/paypal_invite.html', - { - 'schedule': schedule, - }, - request=request - ) + if settings.PAYPAL_ENABLED: + return render_to_string( + 'club/payment/paypal_invite.html', + { + 'schedule': schedule, + }, + request=request + ) + else: + return '' def initiate(self, request, schedule): app = request.GET.get('app')