fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
infopage blog
[wolnelektury.git]
/
src
/
club
/
payment_methods.py
diff --git
a/src/club/payment_methods.py
b/src/club/payment_methods.py
index
8f5ff6b
..
98c138d
100644
(file)
--- a/
src/club/payment_methods.py
+++ b/
src/club/payment_methods.py
@@
-1,5
+1,5
@@
-# This file is part of Wolne
l
ektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja
Nowoczesna Polska
. See NOTICE for more information.
+# This file is part of Wolne
L
ektury, 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
#
from hashlib import sha256
from django.conf import settings
@@
-19,7
+19,7
@@
class PaymentMethod(object):
updateable = False
def initiate(self, request, schedule):
updateable = False
def initiate(self, request, schedule):
- r
eturn reverse('club_dummy_payment', args=[schedule.key])
+ r
aise NotImplementedError
class PayU(PaymentMethod):
class PayU(PaymentMethod):
@@
-27,7
+27,6
@@
class PayU(PaymentMethod):
expiration_reliable = True
slug = 'payu'
name = 'PayU'
expiration_reliable = True
slug = 'payu'
name = 'PayU'
- template_name = 'club/payment/payu.html'
def __init__(self, pos_id):
self.pos_id = pos_id
def __init__(self, pos_id):
self.pos_id = pos_id
@@
-55,7
+54,6
@@
class PayU(PaymentMethod):
class PayURe(PaymentMethod):
slug = 'payu-re'
name = 'PayU recurring'
class PayURe(PaymentMethod):
slug = 'payu-re'
name = 'PayU recurring'
- template_name = 'club/payment/payu-re.html'
is_recurring = True
expiration_reliable = True
cancellable = True
is_recurring = True
expiration_reliable = True
cancellable = True
@@
-90,6
+88,7
@@
class PayURe(PaymentMethod):
return render_to_string(
'payu/rec_widget.html',
{
return render_to_string(
'payu/rec_widget.html',
{
+ 'schedule': schedule,
'form': forms.PayUCardTokenForm(),
'pos': POSS[self.pos_id],
'widget_args': widget_args,
'form': forms.PayUCardTokenForm(),
'pos': POSS[self.pos_id],
'widget_args': widget_args,
@@
-144,18
+143,20
@@
class PayURe(PaymentMethod):
class PayPal(PaymentMethod):
slug = 'paypal'
name = 'PayPal'
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):
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')
def initiate(self, request, schedule):
app = request.GET.get('app')