Changed Additional Mentors to Co-Mentors in the manage view.
authorLennard de Rijk <ljvderijk@gmail.com>
Sat, 25 Apr 2009 20:50:48 +0200
changeset 2279 e31414fd3b2a
parent 2278 c4d40ab98f71
child 2280 157f6b8de010
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
app/soc/templates/soc/student_project/manage.html
app/soc/views/models/student_project.py
--- 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,