{% from "partials.html" import render_card, deck %}

{{playerid | e}}

Cards:

{% for card in game.cards_for(playerid) %} {{ render_card(card, game, playerid, play=True) }} {% endfor %}

Deck:

{{ deck(game, playerid) }}

Other players:

{% for other_playerid in game.players %} {% if other_playerid != playerid %}
  • {{ other_playerid }}: {{ game.cards[other_playerid] | length}} cards Give card
  • {% endif %} {% endfor %}