app/projrev/models.py
changeset 18 05b9e60e6a10
parent 16 bed14c9685a5
child 19 0c9bdcfac9f7
equal deleted inserted replaced
17:5c1e26fa0fc4 18:05b9e60e6a10
    50 
    50 
    51   # Field containing the state to which the institution belongs to.
    51   # Field containing the state to which the institution belongs to.
    52   state = models.CharField(max_length=256,
    52   state = models.CharField(max_length=256,
    53                            choices=STATE_CHOICES)
    53                            choices=STATE_CHOICES)
    54 
    54 
       
    55   mobile_num = models.CharField(max_length=20)
       
    56 
       
    57   fax_num = models.CharField(max_length=20, null=True)
       
    58 
    55   # Field containing the district to which the institution belongs
    59   # Field containing the district to which the institution belongs
    56   # to in the state of India.
    60   # to in the state of India.
    57   district = models.CharField(max_length=256,
    61   district = models.CharField(max_length=256,
    58                               choices=DISTRICT_CHOICES)
    62                               choices=DISTRICT_CHOICES)
    59 
    63