{% extends "base.html" %} {% block content %}
{% if authenticated %} {% if days > 65 %} {% endif %} {% endif %} Start-Zeit: {{ bingo.start_time.strftime("%d.%m.%y %H:%M Uhr") }} – Spieler: {{ bingo.player_name }} {% if bingo.finished %} – Bingo-Feld beendet. {% if bingo.score %} Punktzahl: {{ bingo.score }} {% else %} Keine Punkte. {% endif %} {% endif %}
{% for y in range(5) %}
{% for x in range(5) %}

{{ squares[x][y].content }}

{% if squares[x][y].check_time %}

Zeit: {{ squares[x][y].check_time.strftime("%d.%m.%y %H:%M Uhr") }}

{% endif %}
{% endfor %}
{% endfor %} {% endblock %}