Change the model field name of the payment from paid to confirmed.
--- 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)