{% extends 'backoffice/base.html.twig' %} {% block body %}

{{ t('Quiz') }}: {{ quiz.season.name }} - {{ quiz.name }}

{{ t('Questions') }}

{% for question in quiz.questions %}

{% for answer in question.answers %}
  • {{ answer.text }}
  • {% else %} {{ t('There are no answers for this question') }} {% endfor %}
    {% else %} EMPTY {% endfor %}

    {{ t('Score') }}

    {{ t('Number of dropouts:') }} {{ quiz.dropouts }}

    {# {% with result = quiz.get_score %} #} {# {% for candidate in result %} #} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# {% empty %} #} {# {% endfor %} #}
    {{ t('Candidate') }} {{ t('Correct Answers') }} {{ t('Corrections') }} {{ t('Score') }} {{ t('Time') }}
    {{ candidate.name }}{{ candidate.correct }}{{ candidate.corrections }}{{ candidate.score }}{{ candidate.time }}
    {# {% endwith %} #}
    {% endblock %} {% block script %} {% endblock script %} {% block title %} {% endblock %}