diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/head.pug | 2 | ||||
-rw-r--r-- | views/tm_list.pug | 20 |
2 files changed, 5 insertions, 17 deletions
diff --git a/views/head.pug b/views/head.pug index c3689c0..3792429 100644 --- a/views/head.pug +++ b/views/head.pug @@ -166,7 +166,7 @@ mixin poollist(list, title, icon) if title thead tr - th= title + th!= title td= icon tbody each pool in list 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>`) |