replace W-L-T with win percentage, add Win % column, and add sortable headers

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-26 20:24:24 -05:00
co-authored by Claude Sonnet 4.6
parent e412ec2072
commit fa27589945
2 changed files with 63 additions and 8 deletions
+6 -5
View File
@@ -38,7 +38,7 @@
<div class="stat-value text-2xl text-warning" id="s-top"></div>
</div>
<div class="stat">
<div class="stat-title">Combined WLT</div>
<div class="stat-title">Team Win %</div>
<div class="stat-value text-2xl" id="s-rec"></div>
</div>
<div class="stat">
@@ -71,10 +71,11 @@
<thead>
<tr>
<th class="w-12">#</th>
<th>Player</th>
<th class="text-right">ITC Points</th>
<th class="text-right hidden sm:table-cell">WLT</th>
<th class="text-right hidden sm:table-cell">ITC Rank</th>
<th class="cursor-pointer select-none" data-sort="name">Player</th>
<th class="text-right cursor-pointer select-none" data-sort="pts">ITC Points</th>
<th class="text-right hidden sm:table-cell cursor-pointer select-none" data-sort="wlt">WLT</th>
<th class="text-right hidden sm:table-cell cursor-pointer select-none" data-sort="wpct">Win %</th>
<th class="text-right hidden sm:table-cell cursor-pointer select-none" data-sort="rank">ITC Rank</th>
</tr>
</thead>
<tbody id="rows"></tbody>