diff --git a/web/pw-server/src/routes/matches/index.svelte b/web/pw-server/src/routes/matches/index.svelte index 448048b..667e551 100644 --- a/web/pw-server/src/routes/matches/index.svelte +++ b/web/pw-server/src/routes/matches/index.svelte @@ -22,15 +22,118 @@ -new match - +
+ + + + + + + + + {#each matches as match} + goto(match_url(match))}> + + + {#if match["winner"] == null} + + + {:else if match["winner"] == 0} + + + {:else if match["winner"] == 1} + + + {/if} + + + {/each} +
timestampplayer 1player 2
+ {dayjs(match["timestamp"]).format("YYYY-MM-DD HH:mm")} + + {match["players"][0]["bot_name"]} + + TIE + + TIE + + WIN + + LOSS + + LOSS + + WIN + + {match["players"][1]["bot_name"]} +
+
+ + \ No newline at end of file