diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-10-31 10:58:11 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-10-31 10:58:11 +0100 |
commit | 026745e2455bca354f6cc75d954b86f919351f5d (patch) | |
tree | 15fde517c88eb52cdc59272b04f2c8aaa2784eb0 /views | |
parent | 4e7da4450283cc46046fba1fcbf3d86c0456ce0f (diff) | |
download | server-026745e2455bca354f6cc75d954b86f919351f5d.tar.gz |
don't line-wrap active tournament status column
Diffstat (limited to 'views')
-rw-r--r-- | views/head.pug | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/head.pug b/views/head.pug index d9da995..c3689c0 100644 --- a/views/head.pug +++ b/views/head.pug @@ -171,7 +171,7 @@ mixin poollist(list, title, icon) tbody each pool in list tr - td.w + td a(href="/tm/pool/" + pool.pool_name)= pool.pool_name if pool.is_finished if pool.status @@ -179,7 +179,7 @@ mixin poollist(list, title, icon) else td Nobody else - td= pool.status + td.w= pool.status mixin tourlist(seeds, pools, fin) if (seeds && seeds.length > 0) || (pools && pools.length > 0) || (fin && fin.length > 0) |