<%# /templates/chess/lobby.html.ep %> % layout 'default'; % title 'Chess Lobby'; <% content_for head => begin %> <% end %>

♟️ Chess Lobby

Master the art of strategy in a game of Chess!

Ready to play?

Your Active Games

<% for my $game (@$user_games) { %>
<%= $game->{p1_name} %> vs <%= $game->{p2_name} // '?' %> Status: <%= ucfirst($game->{status}) %>
Resume →
<% } %>

Open Games

<% if (@$lobbies) { %> <% for my $lobby (@$lobbies) { %>
Host: <%= $lobby->{host_name} %> Created: <%= $lobby->{created_at} %>
<% } %> <% } else { %>
No active games found.
Be the first to start one!
<% } %>