# HG changeset patch # User Madhusudan.C.S # Date 1289909103 -19800 # Node ID c6f65d3992860e93c5bd7e188461af77db2bfa29 # Parent 93cc238021aefb63eb7ef30072002427381b7b18 Change the model field name of the payment from paid to confirmed. diff -r 93cc238021ae -r c6f65d399286 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)