Quiz funktional;
This commit is contained in:
@@ -10,15 +10,38 @@
|
||||
|
||||
<input asp-for="CurrentQuestion.Id" type="hidden" />
|
||||
|
||||
@if (Model.HasPreviousResult)
|
||||
{
|
||||
<div class="alert alert-@(Model.PassedPreviousQuestion ? "success" : "danger" )" role="alert">
|
||||
<h4 class="alert-heading">@(Model.PassedPreviousQuestion ? "Gut gemacht!" : "Leider falsch!" )</h4>
|
||||
<p class="lead">@Model.PreviousQuestion</p>
|
||||
<table class="table table-borderless table-striped table-sm table-dark border border-dark">
|
||||
<tr>
|
||||
<th>Frage</th>
|
||||
<th>Soll</th>
|
||||
<th>Ist</th>
|
||||
</tr>
|
||||
@foreach (var eval in Model.Evaluations)
|
||||
{
|
||||
<tr class="table-@(eval.Success ? "success" : "danger")">
|
||||
<td>@eval.Text</td>
|
||||
<td><i class="fa fa-@(eval.RightAnswer ? "check" : "times")"></i></td>
|
||||
<td><i class="fa fa-@(eval.GivenAnswer ? "check" : "times")"></i></td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
</div>
|
||||
}
|
||||
|
||||
<h4>Frage beantworten</h4>
|
||||
<p class="text-black-50">aus Lektion <i>@Model.CurrentQuestion.Section.Name</i>, Kurs <i>@Model.CurrentQuestion.Section.Category.Name</i></p>
|
||||
<hr />
|
||||
<p class="lead">
|
||||
@Model.CurrentQuestion.Text <small class="text-black-50"> <i class="fas fa-info-circle" data-toggle="tooltip" title="(@Model.CurrentQuestion.Choices.Count(e => e.IsTrue) von @Model.Choices.Count())"></i></small>
|
||||
</p>
|
||||
@for(int i = 0; i < Model.Choices.Count(); i++)
|
||||
@for (int i = 0; i < Model.Choices.Count(); i++)
|
||||
{
|
||||
|
||||
|
||||
<div class="form-check">
|
||||
<input asp-for="@Model.Choices[i].Id" type="hidden" />
|
||||
<input asp-for="@Model.Choices[i].Text" type="hidden" />
|
||||
|
||||
Reference in New Issue
Block a user