# HG changeset patch # User Lennard de Rijk # Date 1236983739 0 # Node ID 5a8a254af95baa3a9eddbc3d93f319234f62c3d0 # Parent 27428cd5b98fd7eed11275a356803f5f40a854b5 Some textual changes for proposal reviewing. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed diff -r 27428cd5b98f -r 5a8a254af95b app/soc/views/models/organization.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) 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.', }, ]