{% extends "backoffice/base.html" %} {% load i18n %} {% block body %}

{% translate "Quiz" %}: {{ quiz.season.name }} - {{ quiz.name }}

{% translate "Questions" %}

{% for question in quiz.questions.all %}

{% for answer in question.answers.all %}
  • {{ answer.text }}
  • {% empty %} {% translate "There are no answers for this question" %} {% endfor %}
    {% empty %} EMPTY {% endfor %}

    {% translate "Score" %}

    {% translate "Number of dropouts:" %} {{ quiz.dropouts }}

    {% with result=quiz.get_score %} {% for candidate in result %} {% empty %} {% endfor %}
    {% translate "Candidate" %} {% translate "Correct Answers" %} {% translate "Corrections" %} {% translate "Score" %} {% translate "Time" %}
    {{ candidate.name }} {{ candidate.correct }} {{ candidate.corrections }} {{ candidate.score }} {{ candidate.time }}
    {% endwith %}
    {% endblock body %} {% block script %} {% endblock script %}