{% extends 'base.html.twig' %} {% block maximizescript %} {% endblock %} {% block usercss %} {{ parent() }} {% endblock %} {% block body %}

{{ candidate_exam.examid.examname }} {# {{ candidate_exam.questionset.questionset }} #}

{% if candidate_exam.currentquestion == totalQuestion %} {% set next_question = totalQuestion %} {% else %} {% set next_question = candidate_exam.currentquestion + 1 %} {% endif %} {% if candidate_exam.currentquestion == 1 %} {% set prev_question = 1 %} {% else %} {% set prev_question = candidate_exam.currentquestion - 1 %} {% endif %}
{{ candidate_exam.currentquestion }} of {{ totalQuestion }}
Click save button to save your answer, before navigate to next question.
{% include 'AppBundle:Candidate:question.html.twig' with {'form': form} %}
<< Do Later {% if show_clear_answer %} {% endif %} >>
Questions

Question Status

{% for subjectName, eachQuestion in allQuestion %}

{{ subjectName }}

{# {% for topicName, partQuestions in eachQuestion %} #} {% for questionAll in eachQuestion %} {% set current_question_flag = "" %} {% if questionAll['question_no'] == candidate_exam.currentquestion %} {% set current_question_flag = "btn-outline" %} {% endif %} {% if questionAll['question_type'] == 1 and questionAll['answer'] == null %} {% set btn_class = "btn-info" %} {% endif %} {% if questionAll['question_type'] == 1 and questionAll['answer'] != null %} {% set btn_class = "btn-success" %} {% endif %} {% if questionAll['question_type'] == 2 and questionAll['answer_descriptive'] == "" %} {% set btn_class = "btn-info" %} {% endif %} {% if questionAll['question_type'] == 2 and questionAll['answer_descriptive'] != "" %} {% set btn_class = "btn-success" %} {% endif %} {% if questionAll['do_later'] %} {% set btn_class = "btn-warning" %} {% endif %} {{ questionAll['question_no'] }} {% endfor %} {# {% endfor %}#} {% endfor %}
{% endblock %} {% block userscripts %} {% endblock %}