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

{% trans "The previous question" %}:

{{ previous.previous_question }}

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

{% include 'correct_answer.html' %}

{% trans "Explanation" %}:

{{ previous.previous_question.explanation }}


{% endif %} {% if max_score %}

{% trans "Exam results" %}

{% trans "Exam title" %}: {{ quiz.title }}

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

{% if quiz.pass_mark %}

{{ sitting.result_message }}


{% endif %}

{% trans "Review the questions below and try the exam again in the future"%}.

{% if user.is_authenticated %}

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

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

{% trans "Your session score is" %} {{ session }} {% trans "out of a possible" %} {{ possible }}


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

{{ question.content }}

{% correct_answer_for_all question %} {% if question.user_answer %}

{% trans "Your answer" %}: {{ question|answer_choice_to_string:question.user_answer }}

{% endif %}

{% trans "Explanation" %}:

{{ question.explanation }}


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