diff options
-rw-r--r-- | project/scipycon/registration/models.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/project/scipycon/registration/models.py b/project/scipycon/registration/models.py index ed196f3..a65a34e 100644 --- a/project/scipycon/registration/models.py +++ b/project/scipycon/registration/models.py @@ -118,9 +118,8 @@ class Payment(base_models.ScopedBase): user = models.ForeignKey(User) - paid = models.BooleanField( - default=False, blank=True, verbose_name="Amount paid", - help_text="Check this box if you have already paid the fees.") + confirmed = models.BooleanField( + default=False, blank=True) type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES, verbose_name="Type", blank=True, null=True) |