Change the model field name of the payment from paid to confirmed. payments
authorMadhusudan.C.S <madhusudancs@gmail.com>
Tue, 16 Nov 2010 17:35:03 +0530
branchpayments
changeset 260 c6f65d399286
parent 259 93cc238021ae
child 261 148f277e7db2
Change the model field name of the payment from paid to confirmed.
project/scipycon/registration/models.py
--- a/project/scipycon/registration/models.py	Tue Nov 16 17:34:36 2010 +0530
+++ b/project/scipycon/registration/models.py	Tue Nov 16 17:35:03 2010 +0530
@@ -118,9 +118,8 @@
 
     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)