@model MultipleChoiceTrainer.Models.QuestionViewModel @{ ViewData["Title"] = "Frage bearbeiten"; }

Frage bearbeiten

in Lektion @ViewBag.Section.Name, Kurs @ViewBag.Section.Category.Name


@for (int i = 0; i < 5; i++) {
@if (Model != null && Model.Choices != null && Model.Choices.Count > i) {
} else {
}
}
Abbrechen
Back to List
@section Scripts { @{await Html.RenderPartialAsync("_ValidationScriptsPartial");} }