860 reviewed_on = models.DateTimeField(auto_now=True) |
860 reviewed_on = models.DateTimeField(auto_now=True) |
861 |
861 |
862 #: Field containing the review value for this attribute. |
862 #: Field containing the review value for this attribute. |
863 attribute1 = models.PositiveSmallIntegerField( |
863 attribute1 = models.PositiveSmallIntegerField( |
864 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
864 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
865 attribute1.verbose_name = '' |
865 attribute1.verbose_name = 'Feasibility of the proposed activity and the ' |
|
866 'appropriateness of the time frame.' |
866 |
867 |
867 attribute2 = models.PositiveSmallIntegerField( |
868 attribute2 = models.PositiveSmallIntegerField( |
868 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
869 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
869 attribute1.verbose_name = '' |
870 attribute1.verbose_name = 'Uniqueness/novelty/innovation of the said proposal' |
870 |
871 |
871 attribute3 = models.PositiveSmallIntegerField( |
872 attribute3 = models.PositiveSmallIntegerField( |
872 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
873 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
873 attribute1.verbose_name = '' |
874 attribute1.verbose_name = 'Scope for inter-institutional collaboration and ' |
|
875 'development.' |
874 |
876 |
875 attribute4 = models.PositiveSmallIntegerField( |
877 attribute4 = models.PositiveSmallIntegerField( |
876 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
878 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
877 attribute1.verbose_name = '' |
879 attribute1.verbose_name = 'The organisation of the programme to be carried ' |
|
880 'out.' |
878 |
881 |
879 attribute5 = models.PositiveSmallIntegerField( |
882 attribute5 = models.PositiveSmallIntegerField( |
880 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
883 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
881 attribute1.verbose_name = '' |
884 attribute1.verbose_name = 'The details of the work as the outlined by the ' |
|
885 'principal investigator(PI).' |
882 |
886 |
883 attribute6 = models.PositiveSmallIntegerField( |
887 attribute6 = models.PositiveSmallIntegerField( |
884 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
888 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
885 attribute1.verbose_name = '' |
889 attribute1.verbose_name = 'Sufficiency of funds as requested by the PI.' |
886 |
890 |
887 attribute7 = models.PositiveSmallIntegerField( |
891 attribute7 = models.PositiveSmallIntegerField( |
888 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
892 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
889 attribute1.verbose_name = '' |
893 attribute1.verbose_name = 'Social impact/reach/spread of the outcome of the ' |
|
894 'proposal.' |
890 |
895 |
891 attribute8 = models.PositiveSmallIntegerField( |
896 attribute8 = models.PositiveSmallIntegerField( |
892 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
897 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
893 attribute1.verbose_name = '' |
898 attribute1.verbose_name = 'Contribution of the proposal to minimizing the ' |
|
899 'digital divide in our country.' |
894 |
900 |
895 attribute9 = models.PositiveSmallIntegerField( |
901 attribute9 = models.PositiveSmallIntegerField( |
896 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
902 choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) |
897 attribute1.verbose_name = '' |
903 attribute1.verbose_name = 'Any other matter which is likely to affect the ' |
|
904 'execution of the project(max 600 characters).' |