From 568138fbc63828f8f21314cb9d21c95faaa1a350 Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Tue, 16 Nov 2010 17:35:03 +0530 Subject: Change the model field name of the payment from paid to confirmed. --HG-- branch : payments --- project/scipycon/registration/models.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'project') diff --git a/project/scipycon/registration/models.py b/project/scipycon/registration/models.py index ed196f3..a65a34e 100644 --- a/project/scipycon/registration/models.py +++ b/project/scipycon/registration/models.py @@ -118,9 +118,8 @@ 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.") + confirmed = models.BooleanField( + default=False, blank=True) type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES, verbose_name="Type", blank=True, null=True) -- cgit