{% 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 Duration(in Minutes) Action
{{ SlNo }} {{ entity.examname }} {{ entity.duration }} {% for examset in entity.examset %} {{ examset.questionset }}
{% endfor %}  
{{ knp_pagination_render(exams, 'AppBundle:Default:slidingAjax.html.twig') }}
{% endblock %} {% block userscripts %} {% endblock %}