class PayURe(PaymentMethod):
slug='payu-re'
- name = 'PayU Recurring'
+ name = 'PayU (płatność odnawialna)'
template_name = 'club/payment/payu-re.html'
is_recurring = True
class PayPal(PaymentMethod):
slug='paypal'
- name = 'PayPal'
+ name = 'PayPal (płatność odnawialna)'
template_name = 'club/payment/paypal.html'
is_recurring = True
is_onetime = True
methods = []
-pos = getattr(settings, 'CLUB_PAYU_POS', None)
-if pos:
- payu_method = PayU(pos)
- methods.append(payu_method)
-else:
- payu_method = None
-
pos= getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
if pos:
payure_method = PayURe(pos)
else:
payure_method = None
+pos = getattr(settings, 'CLUB_PAYU_POS', None)
+if pos:
+ payu_method = PayU(pos)
+ methods.append(payu_method)
+else:
+ payu_method = None
+
-methods.append(PayPal())
+#methods.append(PayPal())
method_by_slug = {