{#This file is part of ExamSys ExamSys 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. ExamSys 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 ExamSys. If not, see . #} {# This template is for the invigilator student list section. author Dr Joseph Baxter copyright 2020 onwards The University of Nottingham Required variables: data - student data from Invigilation->getStudents row.class - display class row.id -row id row.userid - student id row.timing - flag to indicate timing supported row.remote - flag to indicate remote invigilation row.completed - flag to indicate student has completed the exam row.notes - notes taked row.restbreak - rest breaks taken row.title- title row.surname - surname row.forname - first name row.endtime - time student finished the exam row.special - flag to indicate student requires extra time row.specialextra - the extra time required by the student row.specialextratime - the total extra time the student has for this paper row.accessibility - flag to indiace student has accessibility needs row.medical - student medical needs row.breaks - student break needs Required localised language strings - lang.prefix lang.surname lang.forenames lang.endtime lang.extension_mins #} {% for i, row in data %} {% endfor %}
{{lang.prefix}} {{lang.surname}} {{lang.forenames}} {{lang.endtime}} {{lang.extension_mins}}
{% if row.completed %} {% endif %} {% if row.notes == 1 %} {% endif %} {% if row.restbreak > 0 %} {% for i in 1..row.restbreak %} {% endfor %} {% endif %} {{row.title}} {{row.surname}} {{row.forname}} {{row.endtime|raw}} {% if row.special != '' %} {{row.special}} {% endif %} {% if row.specialextra != '' %} {{row.specialextra}} {% endif %} {% if row.specialextratime != '' %} {{row.specialextratime}} {% endif %} {% if row.accessibility == 1 %}
{% if row.medical != '' %} {% endif %} {% if row.breaks != '' %} {% endif %}
{% endif %}