14 lines
446 B
HTML
14 lines
446 B
HTML
@import model.sessions.PlayerSession
|
|
@(sessions: List[PlayerSession])
|
|
|
|
@main("Sessions") {
|
|
<div id="sessions" class="game-field-background">
|
|
<h1>Knockout Whist sessions</h1>
|
|
<p id="textanimation">Please select your session to jump inside the game!</p>
|
|
@for(session <- sessions) {
|
|
<a id="textanimation" href="@routes.HomeController.ingame(session.id.toString)">@session.name</a><br>
|
|
}
|
|
</div>
|
|
}
|
|
|