cowiz20/views/player.py

12 lines
289 B
Python
Raw Normal View History

2020-04-05 16:00:48 +02:00
from app_instance import api
from wiz_game import the_game
@api.route("/player/{player}")
def index(req, resp, player: str):
p = int(player)
print(p)
print(the_game.players)
resp.content = api.template('home/player.html', player=player, cards=the_game.players[p].cards)