def __str__(self):
return 'Klub'
+ def get_amounts(self):
+ c = {}
+ single = list(self.singleamount_set.all())
+ monthly = list(self.monthlyamount_set.all())
+ for tag, amounts in ('single', single), ('monthly', monthly):
+ wide_spot = narrow_spot = 0
+ for i, p in enumerate(amounts):
+ if p.wide:
+ # Do we have space for xl?
+ if wide_spot < 2:
+ p.box_variant = 'xl'
+ wide_spot += 2
+ else:
+ p.box_variant = 'card'
+ wide_spot += 1
+ narrow_spot = 0
+ elif p.description:
+ p.box_variant = 'card'
+ if narrow_spot:
+ amounts[i-1].box_variant = 'bar'
+ wide_spot += 1
+ narrow_spot = 0
+ else:
+ p.box_variant = 'half'
+ wide_spot += 1
+ narrow_spot += 1
+ wide_spot %= 3
+ narrow_spot %= 2
+ c[tag] = amounts
+ c[f'{tag}_wide_spot'] = wide_spot
+ return c
+
+ def get_description_for_amount(self, amount, monthly):
+ 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):
club = models.ForeignKey(Club, models.CASCADE)
amount = models.IntegerField()
description = models.TextField(blank=True)
+ wide = models.BooleanField(default=False)
class Meta:
ordering = ['amount']
club = models.ForeignKey(Club, models.CASCADE)
amount = models.IntegerField()
description = models.TextField(blank=True)
+ wide = models.BooleanField(default=False)
class Meta:
ordering = ['amount']
super(Schedule, self).save(*args, **kwargs)
self.update_contact()
+ def get_description(self):
+ club = Club.objects.first()
+ return club.get_description_for_amount(self.amount, self.monthly)
+
def initiate_payment(self, request):
return self.get_payment_method().initiate(request, self)