{% extends 'base.html.twig' %} {% form_theme form 'form_table_layout.html.twig' %} {% block usercss %} {{ parent() }} {% endblock %} {% block body %}
Search Exam
{{ form_rest(form) }}
Exam List
{% set slno = 1 %} {% for entity in entities %} {% set slno = slno + 1 %} {% endfor %}
# Exam Name Duration(Minuntes) Question Set Finalized Conclusions Rank List Actions
{{ slno }} {{ entity.examName }} - {{ entity.examtype.examType }} {{ entity.duration }} {% for examset in entity.examset %} {{ examset.questionset }}
{% endfor %}
{% if entity.finalized == 0 %} No {% else %} Yes {% endif%} {# #}
{{ knp_pagination_render(entities, 'AppBundle:Default:slidingAjax.html.twig') }}
{% endblock %} {% block userscripts %} {% endblock %}