diff --git a/django/templates/play/game/score_overview.html b/django/templates/play/game/score_overview.html index f24b5a2..32165c0 100644 --- a/django/templates/play/game/score_overview.html +++ b/django/templates/play/game/score_overview.html @@ -24,13 +24,13 @@ -

Punktestand

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

{% if forloop.counter == 1 %} @@ -39,15 +39,23 @@ 🥈 {% elif forloop.counter == 3 %} 🥉 + {% else %} + {{ forloop.counter }}. {% endif %} {{ participant.display_name }}

{{ participant.score }} Punkte

{% if participant.last_answer_correct %} - + {% if participant == my_participant or request.session.mode == "learn" %} +
Hier erscheint gleich dein Feedback...
+ {% endif %} + {% elif participant.last_answer_correct == False %} - + {% if participant == my_participant or request.session.mode == "learn" %} +
Hier erscheint gleich dein Feedback...
+ {% endif %} + {% endif %}
{% endif %} @@ -131,7 +139,75 @@ {% if is_host %} {% include 'play/game/sound.html' %} {% endif %} + + + + -{% endblock %} \ No newline at end of file +{% endblock %}