{% extends 'cwa/base.html.j2' %} {%- block body %}

Sudoku: {{ game.human_id }} ({{ duration }})

{%- for row in range(1, 10) %} {%- for col in range(1, 10) %} {%- endfor %} {%- endfor %}
{%- if puzzle.original[row-1][col-1] %} {%- else %} {%- endif %}
{%- for row in range(0, 3) %} {%- for col in range(1, 4) %} {%- endfor %} {%- endfor %}

Players in Game

Scores

    {%- for score in game.scoreboard %}
  1. {{ game.players[score['player']].name }} {{ score['duration'] }}
  2. {%- endfor %}
Refresh {%- endblock %}