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

Ergebnisse

{% if request.session.mode == "learn" or is_host %}

Aktuelle Frage

{{ question_data.question }}

{% if question_data.type != "order" and question_data.type != "guess" %}
{% for option in question_data.options %}

{{ option.value }}

0 Antworten

{% endfor %}
{% elif question_data.type == "guess" %}

Richtige Anwort: {% for option in question_data.options%} {{ option.value }}{% endfor %}

(prozentuale Punktevergabe ab Genauigkeit von {{ question_data.tolerance }}%)

0 Antworten

SchÀtzung zu ungenau

0 Antworten

{% else %}

Richtige Reihenfolge

    {% for option in question_data.options|dictsort:"order" %}
  • {{ forloop.counter }}. {{ option.value }}
  • {% endfor %}

0 Antworten

Falsche Reihenfolge

0 Antworten

{% endif %} {% else %}
{% if participant.last_answer_correct %}
Hier erscheint gleich dein Feedback...
{% elif participant.last_answer_correct == False %}
Hier erscheint gleich dein Feedback...
{% endif %}

+{{ participant.last_score }} Punkte

{% endif %}
{% if request.session.mode == "learn" %}

Punktestand

{% endif %}
{% for participant in participants %} {% if request.session.mode == "learn" %} {% if participant == my_participant or is_host %}
{% if forloop.counter == 1 %} đŸ„‡ {% elif forloop.counter == 2 %} đŸ„ˆ {% elif forloop.counter == 3 %} đŸ„‰ {% else %} {{ forloop.counter }}. {% endif %} {{ participant.display_name }}

{{ participant.score }} Punkte

{% if participant == my_participant or request.session.mode == "learn"%}

+{{ participant.last_score }} Punkte

{% endif %} {% endif %}
{% if participant == my_participant or request.session.mode == "learn" %} {% if participant.last_answer_correct %}
Hier erscheint gleich dein Feedback...
{% elif participant.last_answer_correct == False %}
Hier erscheint gleich dein Feedback...
{% endif %} {% endif %}
{% endif %} {% endfor %}
{% if is_host %} {% if is_last_question %} {% if is_last_question and request.session.mode != "learn" %} {% else %} {% endif %} {% else %} {% if request.session.mode == "learn" %} {% else %} {% endif %} {% 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 %}