sdi/models.py
branchanoop
changeset 83 736b2945037f
parent 82 408f2bee9abb
child 152 86bfdb64edb5
equal deleted inserted replaced
82:408f2bee9abb 83:736b2945037f
   107    
   107    
   108 class RegistrantInfo(models.Model):
   108 class RegistrantInfo(models.Model):
   109 
   109 
   110     registrant = models.ForeignKey(Registrant)
   110     registrant = models.ForeignKey(Registrant)
   111     status_of_attending_sagedays = models.CharField(max_length=1, default="0", choices=EVENT_ATTEND_CHOICES)
   111     status_of_attending_sagedays = models.CharField(max_length=1, default="0", choices=EVENT_ATTEND_CHOICES)
   112     status_of_attending_workshop = models.Charfield(max_length=1, default="0", choices=WORKSHOP_ATTEND_CHOICES)
   112     status_of_attending_workshop = models.CharField(max_length=1, default="0", choices=WORKSHOP_ATTEND_CHOICES)
   113     status_of_accomodation = models.CharField(max_length=1, default="0", choices=ACCO_CHOICES)
   113     status_of_accomodation = models.CharField(max_length=1, default="0", choices=ACCO_CHOICES)
   114     has_laptop_for_workshop = models.BooleanField(default=False)
   114     has_laptop_for_workshop = models.BooleanField(default=False)
   115     
   115