27 lines
801 B
Plaintext
27 lines
801 B
Plaintext
@page "/RouteConf"
|
|
<div class="card shadow">
|
|
<div class="card-header">
|
|
<h3>Route Configuration (IO/IOC)</h3>
|
|
</div>
|
|
<div class="card-body p-1">
|
|
<table class="table table-sm table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Metodo</th>
|
|
<th>IO %</th>
|
|
<th>IOC %</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var record in ListPaged)
|
|
{
|
|
<tr class="@CheckSelect(record)">
|
|
<td>@record.Method</td>
|
|
<td>@record.OldWeight</td>
|
|
<td>@record.NewWeight</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div> |