{# Copyright 2017 Hermann Krumrey This file is part of bundesliga-tippspiel. bundesliga-tippspiel is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. bundesliga-tippspiel is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with bundesliga-tippspiel. If not, see . #} {% extends "core/base_layout.html" %} {% block body %}

Fußball Tippspiel zur {{ config.league_name(get_selected_league()[0]) }} Saison {{ config.season_string() }}

Beim Fußball Tippspiel kannst du dein Fußballwissen (und dein Glück) mit deinen Freunden messen!

{% if current_user.is_authenticated %} {% else %}

Hast du bereits einen Account, kannst du dich mithilfe der Anmeldefunktion hier anmelden, ansonsten kannst du dich hier registrieren.

{% endif %}

Neu in der Saison 2021/22


Punktevergabe

Punkte werden wie folgt vergeben:

Es können also maximal 15 Punkte pro Spiel erzielt werden.

Beispiele:

{% for home_is, away_is, home_bet, away_bet, points_calc, points in [ (2, 1, 1, 2, "", 0), (5, 0, 0, 0, "", 3), (3, 0, 1, 0, "7 + 3 =", 10), (1, 1, 2, 2, "7 + 5 =", 12), (4, 1, 3, 0, "7 + 5 =", 12), (0, 2, 0, 2, "7 + 5 + 3 =", 15) ] %} {% endfor %}
Ergebnis Tipp Punkte
{{ home_is }}:{{ away_is }} {{ home_bet }}:{{ away_bet }} {{ points_calc }} {{ points }}
{% endblock %}