sdi/models.py
branchanoop
changeset 152 86bfdb64edb5
parent 83 736b2945037f
child 174 d979d1bc1c4e
equal deleted inserted replaced
151:c5915459e48b 152:86bfdb64edb5
    26                   ("6", "Number Theory"),
    26                   ("6", "Number Theory"),
    27                   ("7", "Polynomials"),
    27                   ("7", "Polynomials"),
    28                   ("8", "Combinatorics and Graph Theory"),                                          
    28                   ("8", "Combinatorics and Graph Theory"),                                          
    29                  )
    29                  )
    30 
    30 
    31 
       
    32 LIKELINESS_CHOICES = (('5', "Will attend at any cost"),
    31 LIKELINESS_CHOICES = (('5', "Will attend at any cost"),
    33                       ('4', "Will attend most probably"),
    32                       ('4', "Will attend most probably"),
    34                       ('3', "Unsure of attending"),
    33                       ('3', "Unsure of attending"),
    35                       ('2', "Might not attend"),
    34                       ('2', "Might not attend"),
    36                       ('1', "Will not attend"),
    35                       ('1', "Will not attend"),
    54 WORKSHOP_ATTEND_CHOICES = (("3", "Is attending"),
    53 WORKSHOP_ATTEND_CHOICES = (("3", "Is attending"),
    55                            ("2", "Has been selected but not confirmed participation"),
    54                            ("2", "Has been selected but not confirmed participation"),
    56                            ("1", "Has requested for a workshop"),
    55                            ("1", "Has requested for a workshop"),
    57                            ("0", "Does not need a workshop"))
    56                            ("0", "Does not need a workshop"))
    58 
    57 
    59 ACCO_CHOICES = (("3", "Has been given accomodation and has confirmed the stay"),
    58 ACCO_CHOICES = (("4", "Has requested but request has been rejected"),
       
    59                 ("3", "Has been given accomodation and has confirmed the stay"),
    60                 ("2", "Has been given acco but not confirmed yet"),
    60                 ("2", "Has been given acco but not confirmed yet"),
    61                 ("1", "Has requested for accomodation"),
    61                 ("1", "Has requested for accomodation"),
    62                 ("0", "Does not need acco"))
    62                 ("0", "Does not need acco"))
    63 
    63 
    64 class Registrant(models.Model):
    64 class Registrant(models.Model):