Files
KnockOutWhist-Web/knockoutwhistweb/app/views/sessions.scala.html
Janis 1d2c141bc8 chore(base): resolved merge-conflict
#5 [Story] Create User Sessions
2025-10-29 19:05:13 +01:00

14 lines
378 B
HTML

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