@model Model.Contest
@Html.Hidden("NotifierEntity", (object)ViewBag.NotifierEntity)
Standings
@if (Model.Participants != null)
{
char a = 'A';
Rank |
Name |
Score |
@foreach (var item in Model.Problems.OrderBy(x => x.ProblemName))
{
@a
|
a++;
}
@{ int i = 0;}
@foreach (var item in Model.Standings.OrderByDescending(p => p.score))
{
i++;
@i |
@item.Participant.Id |
@item.score
|
@foreach (var mal in Model.Problems.OrderBy(x => x.ProblemName))
{
|
}
@*
@Html.DisplayFor(modelItem => item.TimeLimit)
|
| *@
}
}