20 lines
284 B
Plaintext
20 lines
284 B
Plaintext
|
@using RankingService
|
||
|
@model List<Competitor>
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>#</th>
|
||
|
<th>Name</th>
|
||
|
<th>Time</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
@for (int i = 0; i < Model.Count; i++)
|
||
|
{
|
||
|
<tr>
|
||
|
<td>@(i + 1)</td>
|
||
|
<td>@Model[i].Name</td>
|
||
|
<td>@Model[i].Time</td>
|
||
|
</tr>
|
||
|
}
|
||
|
</table>
|