{#This file is part of Rogō Rogō is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Rogō is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Rogō. If not, see . #} {# This template is for the invigilator paper section. author Dr Joseph Baxter copyright 2020 onwards The University of Nottingham Required variables: data - array of property object data which contains info: info.rubric - the paper rubric info.timing - flag to indicate timing allowed info.action - the form action info.started - flag to indicate if the paper has starte info.end_time_h - the paper end time hours info.end_time_m - the paper ent time minutes info.start_date - the paper start time info.end_date - the paper end time info.duration - the paper duration info.password - the paper password info.remote - flag to indicate if remote invigilation info.clarification - paper clarifications info.students - student data from Invigilation->getStudents Required localised language strings - lang.examrubric lang.currenttime lang.endat_but lang.time lang.start_but lang.start lang.end lang.duration lang.papernote lang.viewrubric lang.midexamclarifications lang.examquestionclarifications lang.preexam lang.preexamlist lang.midexam lang.midexamlist lang.postexam lang.postexamlist #} {% for id, info in data %}
{{lang.examrubric}}
{{info.rubric|raw}}
{% if info.password == '' %} {% else %} {% endif %}
{{lang.currenttime}} {% if info.timing %}
{% if info.started %}

{{lang.time}}: :
{% else %}
{% endif %}
{% endif %}
{% include 'invigilator/emergency.html' with {'data': info} %}
{{lang.start}} {{info.start_date}}
{{lang.end}} {{info.end_date}}
{{lang.duration}} {{info.duration}}
{{lang.password}} {{info.password}}
{% if info.clarification %}
{{lang.midexamclarifications}}
{{lang.examquestionclarifications}}
{% endif %}
{% include 'invigilator/studentlist.html' with {'data': info.students} %}
{% endfor %}

{{lang.preexam}}

{{lang.preexamlist|raw}}

{{lang.midexam}}

{{lang.midexamlist|raw}}

{{lang.postexam}}

{{lang.postexamlist|raw}}