Beispiel #1
0
def player_info(player_id):
    player = Player.execute_select({'id': player_id})[0]
    participant = Participant.execute_select({'player_id': player.id},
                                             [('t.date_start', False)])
    return render_template('player_info.html',
                           player=player,
                           participant=participant)