{% 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 %}
Punktestand
{% if is_last_question and request.session.mode != "learn" %}
{% with participant=participants.1 %}
{{ participant.display_name }}
{{ participant.score }}
🥈 {{ participant.display_name }}
{% endwith %}
{% with participant=participants.0 %}
{{ participant.display_name }}
{{ participant.score }}
🥇
{% endwith %}
{% with participant=participants.2 %}
{{ participant.display_name }}
{{ participant.score }}
🥉 {{ participant.display_name }}
{% endwith %}
{% endif %}
{% for participant in participants %}
{% if not is_last_question or request.session.mode == "learn" %}
{% if participant == my_participant or is_host %}