{% for candidate in candidates %}
{{ candidate['username'] }}-{{ candidate['name'] }}
{{ candidate['surname'] }}
{# DOB: {{ candidate['dob']|date('d/m/Y') }}
Institution: {{ candidate['institution'] }}
#} {% 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 %}