sdi/models.py
branchanoop
changeset 233 c5df028e4438
parent 213 ffe5ef840fde
child 235 7583311884e1
equal deleted inserted replaced
232:1bfac108ed6c 233:c5df028e4438
   114     status_of_attending_sagedays = models.CharField(max_length=1, default="0", choices=EVENT_ATTEND_CHOICES)
   114     status_of_attending_sagedays = models.CharField(max_length=1, default="0", choices=EVENT_ATTEND_CHOICES)
   115     status_of_attending_workshop = models.CharField(max_length=1, default="0", choices=WORKSHOP_ATTEND_CHOICES)
   115     status_of_attending_workshop = models.CharField(max_length=1, default="0", choices=WORKSHOP_ATTEND_CHOICES)
   116     status_of_accomodation = models.CharField(max_length=1, default="0", choices=ACCO_CHOICES)
   116     status_of_accomodation = models.CharField(max_length=1, default="0", choices=ACCO_CHOICES)
   117     has_laptop_for_workshop = models.BooleanField(default=False)
   117     has_laptop_for_workshop = models.BooleanField(default=False)
   118     acco_location = models.CharField(max_length=1, choices=ACCO_LOCATION_CHOICES, null=True)
   118     acco_location = models.CharField(max_length=1, choices=ACCO_LOCATION_CHOICES, null=True)
       
   119 
       
   120 class Incentives(models.Model):
       
   121 
       
   122     registrant = models.ForeignKey(Registrant)
       
   123     amount = models.IntegerField(default=0)
       
   124     t_shirt = models.BooleanField(default=False)
       
   125     
       
   126