{% extends '::base.html.twig' %} {% block usercss %} {{ parent() }} {% endblock %} {% block body -%}
View Schedule List Add New Schedule

Schedule Exam Modification

Scheduled Date and Time : {{ scheduled_at|date('d/m/Y h:i A') }}
{% if show_data %}

Other Exam Schedules

{% for sceduled in scheduledExams %}
{#{{ sceduled['color'] }}#} Scheduled Date and Time : {{ sceduled['examStartDate'] }}
{% endfor %}
{% for examset in examsets %} {% endfor %}

Candidates

{{ include("AppBundle:ScheduleExam:TableContent/edit_schedule.html.twig") }}
{% for examset in examsets %}
{% for exSets in examsets %} {% if exSets.id != examset.id %} {% endif%} {% endfor %}

{{ examset }}

{% if currentScheduledExamsExamsetArray[examset.id] is defined %} {% for candidate in currentScheduledExamsExamsetArray[examset.id] %}
{{ candidate['username'] }}-{{ candidate['name'] }}
{{ candidate['surname'] }}
{% if scheduledExamsCandidates[candidate['id']] is defined %} {% set scheduledExamsCandidates_candidate = scheduledExamsCandidates[candidate['id']] %} {% for schCand in scheduledExamsCandidates_candidate %}
{{ schCand['question_set'] }}
{{ scheduledExams[schCand['scheduled_id']]['examStartDate'] }}
{% endfor %} {% endif %}
{% endfor %} {% endif %}
{%endfor%}
{% for exSets in examsets %}
Total Candidates {{ exSets }}:
{% endfor %}
{% endif %} {% endblock %} {% block userscripts %} {% endblock %}