{% extends "base.html" %} {% block title %}Quiz Result — {{ quiz.title }}{% endblock %} {% block nav_courses_student %}active{% endblock %} {% block content %}
{% if attempt.passed %}

Congratulations!

You passed this quiz.

{% else %}

Not Passed

Keep studying and try again.

{% endif %}
{{ attempt.score }}%
Your Score
{{ correct_count }}/{{ total }}
Correct
{{ quiz.pass_score }}%
Pass Mark
Answer Review
{% for row in result_questions %}

{{ forloop.counter }} {{ row.question.question_text }}

{% for choice in row.choices %}
{{ choice.choice_text }} {% if choice.is_correct %} Correct Answer {% elif choice.was_chosen %} Your Answer {% endif %}
{% endfor %}
{% endfor %}
{% endblock %}