You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
@using Expedience.Infrastructure.Models;
|
|
@using Expedience.Web.Extensions;
|
|
@{
|
|
@model IEnumerable<DutyCompletionRecord>
|
|
}
|
|
|
|
<table class="table table-dark table-striped" id="dutyTable" data-toggle="table">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
<th colspan="2">Normal</th>
|
|
<th colspan="2">Solo</th>
|
|
<th colspan="2">MINE</th>
|
|
<th colspan="2">NPC</th>
|
|
</tr>
|
|
<tr>
|
|
<th data-sortable="true">Level</th>
|
|
<th data-sortable="true">Duty</th>
|
|
<th data-sortable="true" data-sorter="durationSorter">Min</th>
|
|
<th data-sortable="true" data-sorter="durationSorter">Avg</th>
|
|
<th data-sortable="true" data-sorter="durationSorter">Min</th>
|
|
<th data-sortable="true" data-sorter="durationSorter">Avg</th>
|
|
<th data-sortable="true" data-sorter="durationSorter">Min</th>
|
|
<th data-sortable="true" data-sorter="durationSorter">Avg</th>
|
|
<th data-sortable="true" data-sorter="durationSorter">Min</th>
|
|
<th data-sortable="true" data-sorter="durationSorter">Avg</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var record in Model)
|
|
{
|
|
<tr>
|
|
<td>@record.Level</td>
|
|
<td>@record.ContentName</td>
|
|
<td><a href="./normal/@record.TerritoryId">@record.MinNormal.Format()</a></td>
|
|
<td>@record.AvgNormal.Format()</td>
|
|
<td><a href="./solo/@record.TerritoryId">@record.MinSolo.Format()</a></td>
|
|
<td>@record.AvgSolo.Format()</td>
|
|
<td><a href="./mine/@record.TerritoryId">@record.MinMine.Format()</a></td>
|
|
<td>@record.AvgMine.Format()</td>
|
|
<td><a href="./npc/@record.TerritoryId">@record.MinNpc.Format()</a></td>
|
|
<td>@record.AvgNpc.Format()</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table> |