diff -r 27428cd5b98f -r 5a8a254af95b app/soc/views/models/student_proposal.py --- 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.', }, ]