{% extends 'dashboard/base.html' %} {% load static %} {% load humanize %} {% load bangla_numbers %} {% block title %}Exam Results - PassMCQ{% endblock %} {% block content %}

Exam Results

{{ exam.mcq.name }}

{{ total_questions }}
Total Questions
{{ correct_answers }}
Correct
{{ incorrect_answers }}
Wrong
{{ unanswered }}
Unanswered
Score
{{ score|floatformat:2 }}%
Time Taken
{{ time_taken }}

Question & Answer Details

{% for detail in exam_result_details %}
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 %}
{{ detail.exam_question.question.text|safe }}
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 %}
{% if detail.exam_question.question.explanation %} {% endif %}
{% endfor %}

Explanation

Question:

Explanation:
{% block extra_css %} {% endblock extra_css %} {% endblock content %}