{% for candidate in candidates %} {% if candidate['id'] not in currentScheduledExamsArray %}
{{ 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 %}
{% endif %} {% endfor %}