{% extends "base_app.html" %} {% set active_page = 'games' %} {% block title %}Game {{ game.id }}{% endblock %} {% block content %}

{{ current_user.username }} vs {{ game.opponent_username }}

{{ game.time_mode or "Untimed" }} - {{ game.termination_detail or game.termination or "finished" }} - {{ game.ended_at or game.started_at or "Unknown date" }}

Result

{{ game.result }}

{{ game.result }}
You {{ current_user.username }} ({{ game.my_color }})
Opponent {{ game.opponent_username }} ({{ game.opponent_color }})
Moves {{ game.move_count }}
{% for row in board_rows %} {% for square in row %}
{% if square.piece_image %} {% endif %}
{% endfor %} {% endfor %}

Final position

Moves

{% if move_pairs %}
{% for pair in move_pairs %} {% endfor %}
# White Black
{{ pair.move_no }}. {{ pair.white }} {{ pair.black }}
{% else %}

No moves were recorded for this game.

{% endif %}
{% endblock %}