Make "Private Comment" first in the selection box on Student Proposal review page.
Patch by: Pawel Solyga
Reviewed by: to-be-reviewed
--- a/app/soc/templates/soc/student_proposal/review.html Wed Apr 08 22:21:50 2009 +0000
+++ b/app/soc/templates/soc/student_proposal/review.html Wed Apr 08 22:47:46 2009 +0000
@@ -72,11 +72,11 @@
</td>
<td class="formfieldvalue" colspan=3>
<select id="commenttypeselector" onchange="commentType();">
+ <option value="Private">Private Comment</option>
+ {% if is_org_admin %}
+ <option value="Admin">Admin Comment</option>
+ {% endif %}
<option value="Public">Comment Visible to Student</option>
- <option value="Private">Private Comment</option>
- {% if is_org_admin %}
- <option value="Admin">Admin Comment</option>
- {% endif %}
</select>
</td>
</tr>