{% extends "base.html" %} {% load quiz_tags %} {% block title %} Exam Paper Result {% endblock %} {% block description %} Exam Results {% endblock %} {% block content %}
The previous question:
{{ previous.previous_question }}
Your answer was {{ previous.previous_outcome|yesno:"correct,incorrect" }}
{% include 'correct_answer.html' %}Explanation:
{{ previous.previous_question.explanation }}
Exam title: {{ quiz.title }}
You answered {{ score }} questions correctly out of {{ max_score }}, giving you {{ percent }} percent correct
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 %}Your session score is {{ session }} out of a possible {{ possible }}
{{ question.content }}
{% correct_answer_for_all question %}Explanation:
{{ question.explanation }}