Fix formatting and implement the end of game score display

This commit is contained in:
Lol3rrr
2024-10-14 21:20:26 +02:00
parent 6f255faeb3
commit a2be4c2167
13 changed files with 401 additions and 200 deletions

View File

@@ -18,7 +18,7 @@ pub fn demo_list_entry(demo: common::BaseDemoInfo) -> impl leptos::IntoView {
view! {
<li>
<A href=format!("demo/{}/scoreboard", demo.id)>
<span>{demo.map} - {demo.id}</span>
<span>{demo.map} - {demo.id} - {demo.team2_score}:{demo.team3_score}</span>
</A>
</li>
}