summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorMadhusudan.C.S2010-11-16 17:35:03 +0530
committerMadhusudan.C.S2010-11-16 17:35:03 +0530
commit568138fbc63828f8f21314cb9d21c95faaa1a350 (patch)
tree77383d79d921402fadcb79947af8aa83bea895fb /project
parent814b5243284d8f96f446f1c799bed0ce460dd216 (diff)
downloadscipycon-568138fbc63828f8f21314cb9d21c95faaa1a350.tar.gz
scipycon-568138fbc63828f8f21314cb9d21c95faaa1a350.tar.bz2
scipycon-568138fbc63828f8f21314cb9d21c95faaa1a350.zip
Change the model field name of the payment from paid to confirmed.
--HG-- branch : payments
Diffstat (limited to 'project')
-rw-r--r--project/scipycon/registration/models.py5
1 files changed, 2 insertions, 3 deletions
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)