{% include "pdfPrintAssets/header.html.twig" %}

{{ "Exam Schedule" | trans }}

{% if (app.request.query)|length > 0 %}
{% if examDetail is not empty or sessionDetail is not empty or classDetail is not empty or subjectDetail is not empty or locationDetail is not empty %}
{% if examDetail is not empty %}
{% if examDetail.getExamName is not empty %} Exam: {{ examDetail.getExamName }} {% endif %}
{% endif %} {% if sessionDetail is not empty %}
{% if sessionDetail.getname is not empty %} Session: {{ sessionDetail.getname }} {% endif %}
{% endif %} {% if (classDetail is not empty) %}
{% if classDetail.getname is not empty %} Class: {{ classDetail.getname }} {% endif %}
{% endif %} {% if (subjectDetail is not empty) %}
{% if subjectDetail.getSubjectName is not empty %} Subject: {{ subjectDetail.getSubjectName }} {% endif %}
{% endif %} {% if (locationDetail is not empty) %}
Location: {{ locationDetail }}
{% endif %}
{% endif %}
{% endif %}
{#Exam Schedule#} {% for es in examSchedule %} {#Exam#} {#Class#} {#Subjects#} {#Date#} {#Start time#} {#End time#} {#location#} {% endfor %}
{{ 'Exam'|trans }} {{ 'Class'|trans }} {{ 'Subject'|trans }} {{ 'Date'|trans }} {{ 'Start time'|trans }} {{ 'End Time'|trans }} {{ 'Location'|trans }}
{{ es.exam.examName is not empty ? es.exam.examName }} {{ es.class.name is not empty ? es.class.name }} {{ es.classSubject.subjectName is not empty ? es.classSubject.subjectName }} {{ date_format(es.ecDate) }} {{ time_format(es.examStartTime) }} {{ time_format(es.examEndTime) }} {{ es.examLocation }}
{% include "pdfPrintAssets/footer.html.twig" %}