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

Set: {{ game.human_id }}

{%- for card in cards %}
{%- endfor %}

{%- if game.puzzle.is_completed %} Game Over Return to lobby {%- else %} Draw votes: {{ draw_votes }} / {{ draw_majority }} Deck: {{ deck | length }} {% endif %}

Scores

    {%- for score in game.scoreboard %}
  1. {{ game.players[score['player']].name }} {{ score['score'] }}
    {%- for symbol in lastset[score['player']] %}
    {%- include 'cwa/setcard.svg.j2' %}
    {%- endfor %}
  2. {%- endfor %}
Refresh {%- endblock %}