X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4cbcf8cac5e8cad592d9d84d76408249ccca8112..1501fe79a5abe6fc214309ade4ceb85f6bfd0328:/src/club/payment_methods.py

diff --git a/src/club/payment_methods.py b/src/club/payment_methods.py
index 4a596e45b..98c138d8b 100644
--- a/src/club/payment_methods.py
+++ b/src/club/payment_methods.py
@@ -1,5 +1,5 @@
-# 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
@@ -19,7 +19,7 @@ class PaymentMethod(object):
     updateable = False
 
     def initiate(self, request, schedule):
-        return reverse('club_dummy_payment', args=[schedule.key])
+        raise NotImplementedError
 
 
 class PayU(PaymentMethod):
@@ -27,7 +27,6 @@ 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
@@ -55,7 +54,6 @@ class PayU(PaymentMethod):
 class PayURe(PaymentMethod):
     slug = 'payu-re'
     name = 'PayU recurring'
-    template_name = 'club/payment/payu-re.html'
     is_recurring = True
     expiration_reliable = True
     cancellable = True
@@ -145,7 +143,6 @@ class PayURe(PaymentMethod):
 class PayPal(PaymentMethod):
     slug = 'paypal'
     name = 'PayPal'
-    template_name = 'club/payment/paypal.html'
     is_recurring = True
     is_onetime = False