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

Frage anlegen

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


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