{% extends 'base.html' %} {% block content %}

Ergebnisse

Aktuelle Frage

{{ question_data.question }}

{% for option in question_data.options %}

{{ option.value }}

0 Antworten

{% endfor %}

Punktestand

{% for participant in participants %} {% if participant == my_participant or is_host %}

{% if forloop.counter == 1 %} 🥇 {% elif forloop.counter == 2 %} 🥈 {% elif forloop.counter == 3 %} 🥉 {% endif %} {{ participant.display_name }}

{{ participant.score }} Punkte

{% if participant.last_answer_correct %} ✓ {% elif participant.last_answer_correct == False %} ✗ {% endif %}
{% endif %} {% endfor %}
{% if is_host %} {% if is_last_question %} {% else %} {% endif %} {% endif %}
{% endblock %} {% block extra_js %} {% if is_last_question %} {% endif %} {% include 'play/game/common_scripts.html' %} {% if is_host %} {% include 'play/game/sound.html' %} {% endif %} {% endblock %}