Some textual changes for proposal reviewing.
authorLennard de Rijk <ljvderijk@gmail.com>
Fri, 13 Mar 2009 22:35:39 +0000
changeset 1838 5a8a254af95b
parent 1837 27428cd5b98f
child 1839 92b28d1bf2f5
Some textual changes for proposal reviewing. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
app/soc/views/models/organization.py
app/soc/views/models/student_proposal.py
--- a/app/soc/views/models/organization.py	Fri Mar 13 20:25:18 2009 +0000
+++ b/app/soc/views/models/organization.py	Fri Mar 13 22:35:39 2009 +0000
@@ -210,7 +210,7 @@
         'detailed_row.html' % list_params)
     ranked_params['list_heading'] = ('soc/%(module_name)s/list/'
         'detailed_heading.html' % list_params)
-    ranked_params['list_description'] = 'List of %s send to %s ' % (
+    ranked_params['list_description'] = '%s already under review sent to %s' %(
         ranked_params['name_plural'], org_entity.name)
     ranked_params['list_action'] = (redirects.getReviewRedirect, ranked_params)
 
--- a/app/soc/views/models/student_proposal.py	Fri Mar 13 20:25:18 2009 +0000
+++ b/app/soc/views/models/student_proposal.py	Fri Mar 13 22:35:39 2009 +0000
@@ -188,6 +188,7 @@
          'initial': 0,
          'required': False,
          'passthrough': ['initial', 'required', 'choices'],
+         'help_text': 'A score will only be assigned if the review is private!',
          'choices': [(-4,'-4: Wow. This. Sucks.'),
                      (-3,'-3: Needs a lot of work'),
                      (-2,'-2: This is bad'),
@@ -206,9 +207,11 @@
          },
         {'name': 'public',
          'base': forms.BooleanField,
-         'label': 'Public comment',
+         'label': 'Public review',
          'initial': False,
          'required': False,
+         'help_text': 'By ticking this box the score will not be assigned, '
+             'and the review will be public.',
          },
          ]