diff options
Diffstat (limited to 'views/info.pug')
-rw-r--r-- | views/info.pug | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/views/info.pug b/views/info.pug index 8eb1d40..60eac7b 100644 --- a/views/info.pug +++ b/views/info.pug @@ -1,8 +1,8 @@ //- vim:ts=4:sw=4: -- let open_games = games0.filter(game => game.status === 0 && !game.is_ready) -- let ready_games = games0.filter(game => game.status === 0 && game.is_ready) -- let replacement_games = games1.filter(game => game.status === 1 && !game.is_ready) -- let active_games = games1.filter(game => game.status === 1 && game.is_ready) +- let open_games = games0.filter(game => game.status === 0 && !game.is_full) +- let ready_games = games0.filter(game => game.status === 0 && game.is_full) +- let replacement_games = games1.filter(game => game.status === 1 && !game.is_full) +- let active_games = games1.filter(game => game.status === 1 && game.is_full) - let finished_games = games2 doctype html html @@ -38,7 +38,7 @@ html a(href="/create/"+title.title_id) Create a new game if ready_games.length > 0 - h2 Ready to start + h2 Ready +gamelist(ready_games, true) if active_games.length > 0 |