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

Ergebnisse

{% 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 %} {% endif %} {% endfor %}
{% if is_host %} {% if is_last_question %} {% if is_last_question and request.session.mode != "learn" %} {% else %} {% endif %} {% 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 %}