Files
KnockOutWhist-Web/knockoutwhistweb/app/views/sessions.scala.html
Janis d87348f13f chore(base): resolved merge-conflict
#5 [Story] Create User Sessions
2025-11-01 20:49:37 +01:00

14 lines
416 B
HTML

@import model.sessions.PlayerSession
@(sessions: List[PlayerSession])
@main("Sessions") {
<div id="sessions">
<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>
}