From e0649f503f90cced8cfe0663d67212f47e908cb7 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Thu, 5 Sep 2024 20:16:23 +0200 Subject: [PATCH] Fertige Quizze werden jetzt mit "Ergebnisse anzeigen" statt "Fortsetzen" angezeigt --- FWLAZ_Web/Components/Pages/Home.razor | 38 ++++++++++++++++++--------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/FWLAZ_Web/Components/Pages/Home.razor b/FWLAZ_Web/Components/Pages/Home.razor index 1d026fe..4904b1e 100644 --- a/FWLAZ_Web/Components/Pages/Home.razor +++ b/FWLAZ_Web/Components/Pages/Home.razor @@ -11,9 +11,21 @@ @if (CurrentSession.LoadGame != null) { -

Vorherigen Lauf fortsetzen

+

Vorheriges Quiz

@CurrentSession.LoadGame.Title
- + + @if (CurrentSession.LoadGame.Questions?.Count == 0 && CurrentSession.LoadGame.QuestionAnswers != null) + { + + } + else + { + + } + } @@ -34,13 +46,13 @@ @if (SelectedQuiz != null && NewGame != null) { -@*
- - -
*@ + @*
+ + +
*@
@@ -57,10 +69,10 @@
-@*
- - -
*@ + @*
+ + +
*@ }