X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9eeeeab0b4b72b405b2c2a6e69969537706535bf..eeb6424401e4ab36f9bcdb017b36b2957a4e06f2:/src/club/models.py

diff --git a/src/club/models.py b/src/club/models.py
index 676669497..8fe3e4798 100644
--- a/src/club/models.py
+++ b/src/club/models.py
@@ -73,6 +73,11 @@ class Club(models.Model):
         amounts = self.monthlyamount_set if monthly else self.singleamount_set
         amount = amounts.all().filter(amount__lte=amount).last()
         return amount.description if amount is not None else ''
+
+    @property
+    def paypal_enabled(self):
+        print("ENABLED?", settings.PAYPAL_ENABLED)
+        return settings.PAYPAL_ENABLED
     
 
 class SingleAmount(models.Model):