@using NEducation.Models; @using NEducation.Controllers; @model NEducation.Models.GrammarModel @{ ViewBag.Title = "MiniGame"; Layout = "~/Views/Shared/_LayoutMiniGame.cshtml"; GrammarModel model = Session["model"] as GrammarModel; int questionIndex = model.currentQuestionIndex-1; }
@Model.remainTime
@if (Model.questions != null && Model.questions.Count > 0) { @NEducation.Content.Texts.Lang.Question @(questionIndex)/@(Model.questions.Count): @NEducation.Content.Texts.Lang.ContentQuestions }
@if (Model.questions != null && Model.questions.Count > 0) {
@Model.question.content
} else {
Không có câu hỏi nào để hiển thị.
}
@**@