@if (Model.ucnData.theRole == "teacher" || Model.ucnData.theRole == "developer")
{
@Model.myFullName: Teacher
}
@if (Model.ucnData.theRole == "student" || Model.ucnData.theRole == "developer")
{
// STUDENT PATH
@if (Model.StudentState == "QuizzSelect")
{
Quizz Management
@Model.myFullName, @Model.ucnData.theClass.FirstOrDefault()
|
Description |
Your Score |
Max Score |
Reset |
@foreach (var item in Model.PageTests)
{
|
|
@item.Text
|
@item.Journal.Score
|
@item.Journal.ScoreAcc
|
@if (item.Journal.Anonymous)
{
}
|
}
// if review has been selected then show it
@if (Model.PageMCQuestionReview != null)
{
@for (int qindex = 0; qindex < Model.PageMCQuestionReview.Count; qindex++)
{
|
@Model.PageMCQuestionReview[qindex].QuestionText |
@for (int aindex = 0; aindex < Model.PageMCResponseReview[qindex].Count; aindex++)
{
|
@if (Model.PageMCResponseReview[qindex][aindex])
{
}
|
@if (Model.PageMCQuestionReview[qindex].AList[aindex].Aok)
{
@Model.PageMCQuestionReview[qindex].AList[aindex].Atxt
|
}
else
{
@Model.PageMCQuestionReview[qindex].AList[aindex].Atxt
|
}
}
}
}
}
@if (Model.StudentState == "QuizzRunning")
{
// We are doing a Quizz
@Model.PageMCQuestion.QuestionText
}
}
@if (Model.PageChartConnectors != null)
{
@if (Model.PageChartConnectors.Count > 2)
{
}
}
@section scripts {
}