12 lines
289 B
Python
12 lines
289 B
Python
|
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)
|