{% extends "base.html.twig" %} {% block BeforeAnyCSSFile %} {% for file in encore_entry_css_files('select2__init') %} {% endfor %} {% endblock %} {% set pagename = 'Exam Marking' | trans %} {% set addBtnTitle = 'Scheduled Exam' | trans %} {% set addBtnLink = path('exam_schedule_list') %} {% block MainContent %} {# Mark obtain details #}
{# marks obtain information #}
{{ examClass.exam.examName }}

{{ examClass.exam.examDetails }}


{{ 'Start Date' | trans }} {{ time_format(examClass.examStartTime) }} {{ 'Total Marks' | trans }} {{ examClass.examTotalMarks }}
{{ 'End Date' | trans }} {{ time_format(examClass.examEndTime) }} {{ 'Obtain Marks' | trans }} {{ examClass.examPassingMarks }}
{{ 'Class' | trans }} {{ examClass.class.name }} {{ 'Subject' | trans }} {{ examClass.classSubject.subjectName }}
{{ 'Examiner' | trans }} {% for ex in examClass.examiners %} {{ ex.getUser.getFullName }} , {% endfor %} {{ 'Exam will be?' | trans }} {{ date_format(examClass.ecDate) }}

0 {{ 'means student is present but got zero mark' | trans }}
-2 {{ 'student is absent' | trans }}
-1 {{ 'Student is present but not appeard in test/exam' | trans }}

{# list of all exams #}
{% set array = [] %} {% set counter = -1 %} {# list of student #} {% for exS in examsClass.getExamsClassesStudents.toArray %} {% set counter = counter + 1 %} {% endfor %}
{{ 'Student'|trans }} {{ 'Enter Marks'|trans }}
{{ exS.getExamDidBy.getFullName }}
{# save button #}
    {{ 'Download Empty PDF file' }}     {{ 'Go Back' | trans }}
{% endblock %} {% block ExtraJsFIles %} {% for file in encore_entry_js_files('exams') %} {% endfor %} {% endblock %} {% block documentation %}
Marking Exams?

This page supposed to, Enter Marks of Students what they get in the Exam.
At the Bottom of page, Student list are showing which are Enrolled in the Selected Class & Subject.
At the Top of page, You will see the Scheduled Exam details, who is examiner? How much total Marks , Passing Marks & others..
0 means student is present but got zero mark
-2 student is absent
-1 Student is present but not appeard in test/exam

{% endblock %}