{% extends 'base.html' %} {% include 'quizz_ws_reload.html' %} {% block title %}{{ quizz.name }}{% endblock %} {% block content %} {% include 'progress.html' %}
{% if question_locked %} {% else %} {% endif %}
{{ quizz.questions[question_idx].question|safe }}
{% for answer_idx in answer_order %} #{{ answer_idx }} : {{ quizz.questions[question_idx].answers[answer_idx].answer|safe }}
{% endfor %}

{{ gettext("Answers for this question") }}

{% for name, answer in quizz_state.get_answers_for_current_question() %} {% endfor %}
{{ gettext("Name") }}{{ gettext("Answer") }}
{{ name }}#{{ answer }}

{{ gettext("Global Leaderboard") }}

{% for name, score in quizz_state.get_global_ranking_with_names() %} {% endfor %}
{{ gettext("Name") }}{{ gettext("Score") }}
{{ name }}{{ score }}
{% endblock %}