diff --git a/conservancy/supporters/models.py b/conservancy/supporters/models.py index 5d306313c2f81fc45c9598e13ce5fe9bd9e50aea..55a3c2b5b0d5977c74b3a8d7cbc4c86497fafdf6 100644 --- a/conservancy/supporters/models.py +++ b/conservancy/supporters/models.py @@ -19,6 +19,11 @@ class Supporter(models.Model): class SustainerOrder(models.Model): + RENEW_CHOICES = [ + ('', 'None'), + ('month', 'Monthly'), + ('year', 'Annual'), + ] TSHIRT_CHOICES = [ ( '', @@ -63,10 +68,10 @@ class SustainerOrder(models.Model): validators=[ validators.MinValueValidator(100), ]) - monthly_recurring = models.BooleanField(default=False) + recurring = models.CharField(max_length=10) paid_time = models.DateTimeField(null=True, blank=True) - acknowledge_publicly = models.BooleanField(default=False) - add_to_mailing_list = models.BooleanField(default=False) + acknowledge_publicly = models.BooleanField(default=True) + add_to_mailing_list = models.BooleanField(default=True) tshirt_size = models.CharField(max_length=50, choices=TSHIRT_CHOICES) street = models.CharField(max_length=255, blank=True) city = models.CharField(max_length=255, blank=True)