app/soc/templates/soc/student_project/manage.html
changeset 2688 dfe0439a0711
parent 2279 e31414fd3b2a
child 2690 730676c00907
equal deleted inserted replaced
2687:1e2bcc7f6d3a 2688:dfe0439a0711
    13 limitations under the License.
    13 limitations under the License.
    14 {% endcomment %}
    14 {% endcomment %}
    15 {% load forms_helpers %}
    15 {% load forms_helpers %}
    16 
    16 
    17 {% block body %}
    17 {% block body %}
    18 <p>
       
    19 <p>
       
    20 {% block instructions %}
    18 {% block instructions %}
    21 Please use this form to change the Mentor for the Student Project.
    19 Use this page to manage the Student Project. You can (re)assign Mentors here and check the status of the evaluations.
    22 {% endblock %}
    20 {% endblock %}
    23 
    21 
    24 {% if error_message %}
    22 <p>
    25   <div class="error">{{ error_message|safe }}</div>
    23 <b>Primary Mentor</b><br />
    26 {% endif %}
    24 In this section you can assign a new Primary Mentor.
    27 
    25 Note that if you select a co-Mentor from this list that Mentor will be removed from the co-Mentors.
    28 <form method="POST">
    26 <form method="POST">
    29   <table>
    27   <table>
    30     {% as_table mentor_edit_form %}
    28     {% as_table mentor_edit_form %}
    31   </table>
    29   </table>
    32   <table>
    30   <table>
    41       <input type="button" value="Back to Previous Page" onClick="javascript: history.go(-1)">
    39       <input type="button" value="Back to Previous Page" onClick="javascript: history.go(-1)">
    42     </td>
    40     </td>
    43   </tr>
    41   </tr>
    44  </table>
    42  </table>
    45 </form>
    43 </form>
    46 <p/>
    44 </p>
    47 
    45 
    48 <b> Co-Mentors </b><br/>
    46 <p>
    49 
    47 <b>Co-Mentors</b><br/>
       
    48 In this section you can add/remove co-mentors for this project.
       
    49 Co-mentors usually play a vital role in the success of a project, however they are not responsible for taking evaluations.
    50 <table>
    50 <table>
    51   {% for mentor in additional_mentors %}
    51   {% for mentor in additional_mentors %}
    52     <tr>
    52     <tr>
    53       <td>
    53       <td>
    54         {{ mentor.name }}
    54         {{ mentor.name }}
    75       <input type="button" value="Back to Previous Page" onClick="javascript: history.go(-1)">
    75       <input type="button" value="Back to Previous Page" onClick="javascript: history.go(-1)">
    76     </td>
    76     </td>
    77   </tr>
    77   </tr>
    78  </table>
    78  </table>
    79 </form>
    79 </form>
       
    80 </p>
       
    81 
       
    82 <p>
       
    83 <b>Evaluations</b><br />
       
    84 This section contains the Mentor and Student Evaluations.
       
    85 From here you can view the Mentor and Student Evaluations and if possible (re)take the evaluations given by your Mentor.
       
    86 
       
    87 {% with evaluation_list as list %}
       
    88   {% for list_number in list.lists %}
       
    89     <p>
       
    90       {% include list.nextList %}
       
    91     </p>
       
    92   {% endfor %}
       
    93 {% endwith %}
       
    94 </p>
    80 {% endblock %}
    95 {% endblock %}