{% extends 'base.html.twig' %} {% block usercss %} {{ parent() }} {% endblock %} {% block body %}
Exam List
{% set SlNo = 1 %} {% for entity in exams %} {% set SlNo = SlNo + 1 %} {% endfor %}
# Exam Name Batch Date & Time Duration(in Minutes) Action
{{ SlNo }} {{ entity['examName'] }} {{ entity['batchName'] }} {{ entity['examStartDate']|date('d/m/Y h:i A') }} {{ entity['duration'] }} {{ entity['questionSet'] }}
{{ knp_pagination_render(exams, 'AppBundle:Default:slidingAjax.html.twig') }}
{% endblock %} {% block userscripts %} {% endblock %}