diff options
Diffstat (limited to 'project/scipycon/registration/models.py')
-rw-r--r-- | project/scipycon/registration/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/project/scipycon/registration/models.py b/project/scipycon/registration/models.py index 2ab0752..77a6dae 100644 --- a/project/scipycon/registration/models.py +++ b/project/scipycon/registration/models.py @@ -118,6 +118,10 @@ 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.") + type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES, verbose_name="Type", blank=True, null=True) |