{% extends "components/base_layout.html" %} {% block body %}
{{ match.current_score }}
{{ match.minute_display }}

{{ match.home_team.short_name }}

VS

{{ match.away_team.short_name }}


Tore

{% for goal in goals %} {% if goal.player.team.id == match.home_team.id %} {% else %} {% endif %} {% if goal.player.team.id == match.away_team.id %} {% else %} {% endif %} {% endfor %}
Minute Schütze Stand Schütze
{{ goal.minute }} {% if goal.penalty %} {% elif goal.own_goal %} {% else %} {% endif %} {{ goal.player.name }} {{ goal.home_score }}:{{ goal.away_score }}{{ goal.player.name }} {% if goal.penalty %} {% elif goal.own_goal %} {% else %} {% endif %}

Tipps

{% for bet in bets %} {% endfor %}
Spieler Tipp Punkte
{{ bet.user.username }} {{ bet.home_score }}:{{ bet.away_score }} {% if match.started %} {% set points=bet.evaluate() %} {% if points == 0 %} {{ points }} {% elif points <= 3 %} {{ points }} {% elif points <= 7 %} {{ points }} {% elif points <= 10 %} {{ points }} {% elif points <= 12 %} {{ points }} {% elif points > 12 %} {{ points }} {% else %} {{ points }} {% endif %} {% else %} - {% endif %}
{% endblock %}