Changed Additional Mentors to Co-Mentors in the manage view.
Due to a conversation with Pawel.
Patch by: Lennard de Rijk
Reviewed by: to-be-reviewed
--- a/app/soc/templates/soc/student_project/manage.html Sat Apr 25 20:24:00 2009 +0200
+++ b/app/soc/templates/soc/student_project/manage.html Sat Apr 25 20:50:48 2009 +0200
@@ -45,7 +45,7 @@
</form>
<p/>
-<b> Additional Mentors </b><br/>
+<b> Co-Mentors </b><br/>
<table>
{% for mentor in additional_mentors %}
--- a/app/soc/views/models/student_project.py Sat Apr 25 20:24:00 2009 +0200
+++ b/app/soc/views/models/student_project.py Sat Apr 25 20:50:48 2009 +0200
@@ -296,7 +296,7 @@
dynafields = [
{'name': 'mentor_id',
'base': forms.ChoiceField,
- 'label': 'Additional Mentors',
+ 'label': 'Co-Mentor',
'required': True,
'passthrough': ['required', 'choices', 'label'],
'choices': additional_mentor_choices,