project/scipycon/registration/models.py
branchpayments
changeset 248 0fc144c69e84
parent 245 6ba059b30281
child 259 93cc238021ae
--- a/project/scipycon/registration/models.py	Mon Nov 15 14:59:13 2010 +0530
+++ b/project/scipycon/registration/models.py	Mon Nov 15 14:59:46 2010 +0530
@@ -118,6 +118,10 @@
 
     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)