summaryrefslogtreecommitdiff
path: root/public/join.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-10-13 12:48:48 +0200
committerTor Andersson <tor@ccxvii.net>2024-10-13 18:49:00 +0200
commit4d7bdc955a2e6dd2c222f985c7fbc9b4febbccc4 (patch)
treea344e7c011b07e83ab0abf57e1aa043a9a81dff2 /public/join.js
parent88d909a874499f9d3d18e76ff30c1155caa2e48e (diff)
downloadserver-4d7bdc955a2e6dd2c222f985c7fbc9b4febbccc4.tar.gz
Tournaments!
Diffstat (limited to 'public/join.js')
-rw-r--r--public/join.js14
1 files changed, 10 insertions, 4 deletions
diff --git a/public/join.js b/public/join.js
index 75e7aca..b2c667f 100644
--- a/public/join.js
+++ b/public/join.js
@@ -327,13 +327,19 @@ function create_game_list() {
let table = create_element(window.game_info, "table")
let list = create_element(table, "tbody")
- if (game.scenario !== "Standard")
- create_game_list_item(list, "Scenario", game.scenario)
- create_game_list_item(list, "Options", format_options(game.options))
+ if (game.pool_name) {
+ create_game_list_item(list, "Tournament", `<a href="/tm/pool/${game.pool_name}">${game.pool_name}</a>`)
+ } else {
+ if (game.scenario !== "Standard")
+ create_game_list_item(list, "Scenario", game.scenario)
+ create_game_list_item(list, "Options", format_options(game.options))
+ }
+
if (game.pace > 0)
create_game_list_item(list, "Pace", PACE_TEXT[game.pace])
- create_game_list_item(list, "Notice", game.notice)
+ if (!game.pool_name)
+ create_game_list_item(list, "Notice", game.notice)
if (game.status === 0) {
if (game.owner_id)