sdi/models.py
branchanoop
changeset 45 29d7d70c9273
parent 34 514db83586f5
child 49 eccfa73e136b
equal deleted inserted replaced
44:ce2b84e6f24a 45:29d7d70c9273
    57     tools_used = models.TextField(help_text="Ex: Scilab, Mathematica, Matlab etc.", verbose_name="Other tools used", blank=True)
    57     tools_used = models.TextField(help_text="Ex: Scilab, Mathematica, Matlab etc.", verbose_name="Other tools used", blank=True)
    58 
    58 
    59     #address = models.TextField(help_text="To send DVD containing tutorials on Python if required.", blank=True)
    59     #address = models.TextField(help_text="To send DVD containing tutorials on Python if required.", blank=True)
    60     address = models.TextField(blank=True)
    60     address = models.TextField(blank=True)
    61     phone_num = models.CharField(max_length=15, verbose_name="Phone Number", blank=True)
    61     phone_num = models.CharField(max_length=15, verbose_name="Phone Number", blank=True)
       
    62     acco_required = models.BooleanField(verbose_name="Need accomodation", default=False)
    62 
    63 
       
    64     priority_for_attending = models.CharField(max_length=1, default="3")
       
    65     selected_for_attending = models.BooleanField(default=False)
       
    66     
    63     likeliness_of_attending = models.CharField(max_length=1, choices=LIKELINESS_CHOICES)
    67     likeliness_of_attending = models.CharField(max_length=1, choices=LIKELINESS_CHOICES)
    64 
    68