project/scipycon/registration/models.py
branchpayments
changeset 260 c6f65d399286
parent 259 93cc238021ae
child 268 2d47a3eb5ec4
equal deleted inserted replaced
259:93cc238021ae 260:c6f65d399286
   116     """Defines payment information for SciPy.in registrants
   116     """Defines payment information for SciPy.in registrants
   117     """
   117     """
   118 
   118 
   119     user = models.ForeignKey(User)
   119     user = models.ForeignKey(User)
   120 
   120 
   121     paid = models.BooleanField(
   121     confirmed = models.BooleanField(
   122         default=False, blank=True, verbose_name="Amount paid",
   122         default=False, blank=True)
   123         help_text="Check this box if you have already paid the fees.")
       
   124 
   123 
   125     type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES,
   124     type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES,
   126                             verbose_name="Type", blank=True, null=True)
   125                             verbose_name="Type", blank=True, null=True)
   127 
   126 
   128     details = models.CharField(
   127     details = models.CharField(