{% extends 'base.html' %} {% block content %} {% if is_last_question and is_host %}

🏆 Siegerpodest

Wer ist hier der Quiz-Master?

{% with participant=participants.0 %}

Glückwunsch, {{ participant.display_name }}!

{% endwith %}
{% with participant=participants.1 %}
{{ participant.display_name }}

{{ participant.score }}

🥈
{% endwith %} {% with participant=participants.0 %}
{{ participant.display_name }}

{{ participant.score }}

🥇
{% endwith %} {% with participant=participants.2 %}
{{ participant.display_name }}

{{ participant.score }}

🥉
{% endwith %}
{% else %}
{% with participant=participants.0 %}

Glückwunsch, {{ participant.display_name }}!

{% endwith %}

🏆 Wer ist hier der Quiz-Master?

Nach der Siegerehrung siehst du deine Platzierung!

{% for participant in participants %} {% if request.session.mode != "learn" %} {% if participant == my_participant or is_host %} {% endif %} {% endfor %}
{% 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 %}