chore: rebase

This commit is contained in:
2025-11-01 11:44:55 +01:00
parent 8df3491757
commit b604e6935f
11 changed files with 185 additions and 160 deletions

View File

@@ -1,13 +0,0 @@
@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>
}