# HG changeset patch # User Lennard de Rijk # Date 1240685448 -7200 # Node ID e31414fd3b2a28eef95b596ece02923a767b4d4e # Parent c4d40ab98f7122567ff3dc3555ac04a9aa3abf33 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 diff -r c4d40ab98f71 -r e31414fd3b2a app/soc/templates/soc/student_project/manage.html --- 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 @@

- Additional Mentors
+ Co-Mentors
{% for mentor in additional_mentors %} diff -r c4d40ab98f71 -r e31414fd3b2a app/soc/views/models/student_project.py --- 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,