{% extends '::base.html.twig' %} {% block body -%}

{{ batch.batchname }}

Candidates

{% if batchCandidate is empty %}
No candidates available.
{% else %} {% for candidate in batchCandidate %}
{{ candidate['username'] }} - {{ candidate['name'] }}
{{ candidate['surname'] }}
{#DOB: {{ candidate['dob']|date('d/m/Y') }}
Institution: {{ candidate['institution'] }}
#}
{% endfor %}
{% endif%}
{% endblock %} {% block userscripts %} {% endblock %}