Show only ID in list of MMC/SD.

This commit is contained in:
2019-11-16 01:56:42 +00:00
parent 3808bb166c
commit a1c015a3b5

View File

@@ -37,19 +37,7 @@
<thead>
<tr>
<th>
@Html.DisplayNameFor(model => model.CID)
</th>
<th>
@Html.DisplayNameFor(model => model.CSD)
</th>
<th>
@Html.DisplayNameFor(model => model.OCR)
</th>
<th>
@Html.DisplayNameFor(model => model.SCR)
</th>
<th>
@Html.DisplayNameFor(model => model.ExtendedCSD)
@Html.DisplayNameFor(model => model.Id)
</th>
<th></th>
</tr>
@@ -59,19 +47,7 @@
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.CID)
</td>
<td>
@Html.DisplayFor(modelItem => item.CSD)
</td>
<td>
@Html.DisplayFor(modelItem => item.OCR)
</td>
<td>
@Html.DisplayFor(modelItem => item.SCR)
</td>
<td>
@Html.DisplayFor(modelItem => item.ExtendedCSD)
@Html.DisplayFor(modelItem => item.Id)
</td>
<td>
<a asp-action="Details" asp-route-id="@item.Id" class="btn btn-primary">Details</a>