fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixes
[wolnelektury.git]
/
src
/
club
/
models.py
diff --git
a/src/club/models.py
b/src/club/models.py
index
6766694
..
8fe3e47
100644
(file)
--- 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 ''
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):
class SingleAmount(models.Model):