-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
#
from hashlib import sha256
from django.conf import settings
updateable = False
def initiate(self, request, schedule):
- return reverse('club_dummy_payment', args=[schedule.key])
+ raise NotImplementedError
class PayU(PaymentMethod):
expiration_reliable = True
slug = 'payu'
name = 'PayU'
- template_name = 'club/payment/payu.html'
def __init__(self, pos_id):
self.pos_id = pos_id
class PayURe(PaymentMethod):
slug = 'payu-re'
name = 'PayU recurring'
- template_name = 'club/payment/payu-re.html'
is_recurring = True
expiration_reliable = True
cancellable = True
return render_to_string(
'payu/rec_widget.html',
{
+ 'schedule': schedule,
'form': forms.PayUCardTokenForm(),
'pos': POSS[self.pos_id],
'widget_args': widget_args,
class PayPal(PaymentMethod):
slug = 'paypal'
name = 'PayPal'
- template_name = 'club/payment/paypal.html'
is_recurring = True
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')