X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9eeeeab0b4b72b405b2c2a6e69969537706535bf..ea9d7d13a44a6ad6357b1af8c977c27753268521:/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):