{% extends "base.html" %} {% load quiz_tags %} {% block title %} {{ quiz.title}} {% endblock %} {% block description %} Exam Results for {{ quiz.title }} {% endblock %} {% block content %} {% if previous.answers %}

The previous question:

{{ previous.previous_question }}

Your answer was {{ previous.previous_outcome|yesno:"correct,incorrect" }}

{% include 'correct_answer.html' %}

Explanation:

{{ previous.previous_question.explanation }}


{% endif %} {% if max_score %}

Exam results

Exam title: {{ quiz.title }}

You answered {{ score }} questions correctly out of {{ max_score }}, giving you {{ percent }} percent correct

{% if quiz.pass_mark %}

{{ sitting.result_message }}


{% endif %}

Review the questions below and try the exam again in the future.

{% if user.is_authenticated %}

The result of this exam will be stored in your progress section so you can review and monitor your progression.

{% endif %}
{% endif %}
{% if possible %}

Your session score is {{ session }} out of a possible {{ possible }}


{% endif %} {% if questions %} {% for question in questions %}

{{ question.content }}

{% correct_answer_for_all question %}

Explanation:

{{ question.explanation }}


{% endfor %} {% endif %} {% endblock %}