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 %}