diff --git a/index.html b/index.html
index 7905ff1..64eb754 100644
--- a/index.html
+++ b/index.html
@@ -73,6 +73,7 @@
# |
Player |
ITC Points |
+ W–L–T |
Win % |
ITC Rank |
diff --git a/src/main.js b/src/main.js
index 838a9d1..cfca7ee 100644
--- a/src/main.js
+++ b/src/main.js
@@ -219,6 +219,8 @@ function render(state) {
`${esc(name)}` +
`${u.nickname && fullName(u) ? `"${esc(u.nickname)}"` : ""} | ` +
`${fmtPts(r.ITCPoints)} | ` +
+ `` +
+ `${r.wins || 0}–${r.losses || 0}–${r.ties || 0} | ` +
`${fmtWpct(r.wins, r.losses, r.ties)} | ` +
`#${r.placing ?? "—"} | `;
tb.appendChild(tr);
@@ -285,6 +287,7 @@ function showSkeleton() {
` | ` +
` | ` +
` | ` +
+ ` | ` +
` | ` +
` | `;
tb.appendChild(tr);