mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Sort medias.
This commit is contained in:
@@ -37,7 +37,10 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Type)
|
||||
@Html.DisplayNameFor(model => model.PhysicalType)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.LogicalType)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Real)
|
||||
@@ -53,7 +56,10 @@
|
||||
{
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Type)
|
||||
@Html.DisplayFor(modelItem => item.PhysicalType)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.LogicalType)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Real)
|
||||
@@ -62,8 +68,6 @@
|
||||
@Html.DisplayFor(modelItem => item.Count)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Details" asp-route-id="@item.Id" class="btn btn-primary">Details</a>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id" class="btn btn-secondary">Edit</a>
|
||||
<a asp-action="Delete" asp-route-id="@item.Id" class="btn btn-danger">Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user