equal
deleted
inserted
replaced
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 |