From 8eb1b2f8c4565be28531a057a747cda14512f444 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 15 Apr 2022 14:34:49 +0200 Subject: Separate profile and active game list pages. Also show number of games where it is your turn in the header. Only show finished games from last week on active games page. Add separate finished games page to see all of them. # Conflicts: # views/tournament-games.pug --- views/games_public.pug | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 views/games_public.pug (limited to 'views/games_public.pug') diff --git a/views/games_public.pug b/views/games_public.pug new file mode 100644 index 0000000..267c8f7 --- /dev/null +++ b/views/games_public.pug @@ -0,0 +1,22 @@ +//- vim:ts=4:sw=4: +doctype html +html + head + include head + title= SITE_NAME + if user + meta(http-equiv="refresh" content=600) + body + include header + article + h1 All Public Games + + h2 Open + +gametable(0, open_games) + + if ready_games.length > 0 + h2 Ready to start + +gametable(0, ready_games) + + h2 Active + +gametable(1, active_games) -- cgit v1.2.3