X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/e62a2d9038d696e88b58e624f87026af7073088e..a94e848fd865f0a887850e4858dab64c426b10db:/src/club/payment_methods.py?ds=sidebyside

diff --git a/src/club/payment_methods.py b/src/club/payment_methods.py
index 8f5ff6bb8..4a596e45b 100644
--- a/src/club/payment_methods.py
+++ b/src/club/payment_methods.py
@@ -90,6 +90,7 @@ class PayURe(PaymentMethod):
         return render_to_string(
             'payu/rec_widget.html',
             {
+                'schedule': schedule,
                 'form': forms.PayUCardTokenForm(),
                 'pos': POSS[self.pos_id],
                 'widget_args': widget_args,
@@ -149,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')