diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-11-05 21:54:37 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-11-05 21:54:37 +0100 |
commit | 3682e456846d14f827a2f736e08b93aba0076540 (patch) | |
tree | ff598ed6abc3a5e0e24c184fedd2c950d94247c6 /views/tm_list.pug | |
parent | 7986145f941bfb5a898c91eb175e3a740d663ea0 (diff) | |
download | server-3682e456846d14f827a2f736e08b93aba0076540.tar.gz |
Improve tournament sorting order.
Diffstat (limited to 'views/tm_list.pug')
-rw-r--r-- | views/tm_list.pug | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/views/tm_list.pug b/views/tm_list.pug index 4f7c147..bc7fd83 100644 --- a/views/tm_list.pug +++ b/views/tm_list.pug @@ -11,20 +11,8 @@ html p See <a href="/docs/tournaments.html">tournament information</a>. - if 0 - dl - each seeds, title_id in seeds_by_title - dt= TITLE_NAME[title_id] - each seed in seeds - dd - a(href="/tm/seed/" + seed.seed_name)= seed.seed_name - | (#{seed.queue_size}/#{seed.pool_size}) - if user && seed.is_queued - | 🎫 - if 0 - each seeds, title_id in seeds_by_title - +seedlist(seeds, TITLE_NAME[title_id]) - if 1 - +seedlist(seeds, "Mini Cup") + +seedlist(seeds, "Mini Cup") - +poollist(active_pools, "Active") + h2 Active + each pools, seed_name in pools_by_seed + +poollist(pools, `<a href="/tm/seed/${seed_name}">${seed_name}</a>`) |