Q{{ forloop.counter }}
{% if detail.exam_question.question.chapter %}
{{ detail.exam_question.question.chapter.title }}
{% endif %}
{% if not detail.selected_choice %}
Unanswered
{% elif detail.is_correct %}
Correct
{% else %}
Wrong
{% endif %}
Your Answer:
{% if detail.selected_choice %}
{{ detail.selected_choice.text }}
{% else %}
Not answered
{% endif %}
{% if not detail.is_correct or detail.selected_choice == None %}
Correct Answer:
{% if detail.correct_choice %}
{{ detail.correct_choice.text }}
{% else %}
Unavailable
{% endif %}
{% endif %}