@(user: Option[model.users.User], gamelobby: logic.game.GameLobby)

Match Over!

Congratulations to the winner:

@gamelobby.getLogic.getWinner.get.name

Final Standings
Player
Rounds won Tricks won
@gamelobby.getFinalRanking.zipWithIndex.map { case ((playerName, (wonRounds, tricksWon)), index) => @defining(index + 1) { rank =>
#@rank @playerName
@wonRounds @tricksWon
} }
@if(gamelobby.getFinalRanking.isEmpty) {
No final scores available.
}
@if(user.isDefined && gamelobby.getUserSession(user.get.id).host) {
Return to Lobby
} else {
Loading...

Waiting for the Host to continue...

}