diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-06-14 20:40:25 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-06-14 21:09:48 +0200 |
commit | 06f757c23d0d9f7a2b86f6c828f886ee8e642e03 (patch) | |
tree | 56771af9be14e393e2753a70c7080f5558e28014 /views/games_public.pug | |
parent | ae02f4cde98879b6fddc12c87c4fd3c5663d493e (diff) | |
download | server-06f757c23d0d9f7a2b86f6c828f886ee8e642e03.tar.gz |
Clean up game list logic.
Diffstat (limited to 'views/games_public.pug')
-rw-r--r-- | views/games_public.pug | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/views/games_public.pug b/views/games_public.pug index 44b250d..a3b1407 100644 --- a/views/games_public.pug +++ b/views/games_public.pug @@ -1,11 +1,15 @@ //- vim:ts=4:sw=4: +- let open_games = games.filter(game => game.status === 0 && !game.is_ready) +- let ready_games = games.filter(game => game.status === 0 && game.is_ready) +- let replacement_games = games.filter(game => game.status === 1 && !game.is_ready) +- let active_games = games.filter(game => game.status === 1 && game.is_ready) doctype html html head include head title= SITE_NAME if user - meta(http-equiv="refresh" content=600) + meta(http-equiv="refresh" content=900) body include header article |