# HG changeset patch # User Santosh G. Vattam # Date 1249903716 -19800 # Node ID a7c525ec281a583c0835c22bb611d2e7a2da1a2f # Parent c64531b3afb4c71d68bf64ac46636b7ff5ebd5d0 Added the nine attributes diff -r c64531b3afb4 -r a7c525ec281a app/projrev/models.py --- a/app/projrev/models.py Mon Aug 10 16:54:42 2009 +0530 +++ b/app/projrev/models.py Mon Aug 10 16:58:36 2009 +0530 @@ -862,36 +862,43 @@ #: Field containing the review value for this attribute. attribute1 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' + attribute1.verbose_name = 'Feasibility of the proposed activity and the ' + 'appropriateness of the time frame.' attribute2 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' + attribute1.verbose_name = 'Uniqueness/novelty/innovation of the said proposal' attribute3 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' + attribute1.verbose_name = 'Scope for inter-institutional collaboration and ' + 'development.' attribute4 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' + attribute1.verbose_name = 'The organisation of the programme to be carried ' + 'out.' attribute5 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' + attribute1.verbose_name = 'The details of the work as the outlined by the ' + 'principal investigator(PI).' attribute6 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' + attribute1.verbose_name = 'Sufficiency of funds as requested by the PI.' attribute7 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' + attribute1.verbose_name = 'Social impact/reach/spread of the outcome of the ' + 'proposal.' attribute8 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' + attribute1.verbose_name = 'Contribution of the proposal to minimizing the ' + 'digital divide in our country.' attribute9 = models.PositiveSmallIntegerField( choices=[(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]) - attribute1.verbose_name = '' \ No newline at end of file + attribute1.verbose_name = 'Any other matter which is likely to affect the ' + 'execution of the project(max 600 characters).' \ No newline at end of file