summaryrefslogtreecommitdiff
path: root/views/head.pug
diff options
context:
space:
mode:
Diffstat (limited to 'views/head.pug')
-rw-r--r--views/head.pug4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/head.pug b/views/head.pug
index 1fb90c6..3787bc5 100644
--- a/views/head.pug
+++ b/views/head.pug
@@ -57,10 +57,10 @@ mixin gametable(status,table,hide_title=0)
tbody
each row in table
tr
- td= row.game_id
+ td: a(href="/join/"+row.game_id)= row.game_id
unless hide_title
td.w: a(href="/"+row.title_id)= row.title_name
- td.w= row.scenario
+ td.w= row.options !== "None" ? row.scenario + ", " + row.options : row.scenario
if row.player_names
td!= row.player_names
else