{% extends '::base.html.twig' %} {% block body -%} {% if entities %}
{{ exam.examname }}

Questions List

{% set slno = 1 %} {% for entity in entities %} {% set slno = slno + 1 %} {% endfor %}
# Question Option1 Option2 Option3 Option4 Choicetype Answer Actions
{{ slno }} {{ entity.question|raw }} {{ entity.option1|raw }} {{ entity.option2|raw }} {{ entity.option3|raw }} {{ entity.option4|raw }} {{ entity.choiceType }} {% for answers in entity.answer%} {{ answers }}
{% endfor %}
{{ knp_pagination_render(entities, 'AppBundle:Default:slidingAjax.html.twig') }}
{% else %}
Select Exam
{{ form(search_form) }}
{% endif %} {% endblock %} {% block userscripts %} {% endblock %}