mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Sort supported densities.
This commit is contained in:
@@ -36,21 +36,24 @@
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Organization)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Name)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Description)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Capacity)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.PrimaryCode)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.SecondaryCode)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Writable)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Duplicate)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.DefaultDensity)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.BitsPerMm)
|
||||
</th>
|
||||
@@ -61,16 +64,13 @@
|
||||
@Html.DisplayNameFor(model => model.Tracks)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Capacity)
|
||||
@Html.DisplayNameFor(model => model.DefaultDensity)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Organization)
|
||||
@Html.DisplayNameFor(model => model.Writable)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Name)
|
||||
</th>
|
||||
<th>
|
||||
@Html.DisplayNameFor(model => model.Description)
|
||||
@Html.DisplayNameFor(model => model.Duplicate)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
@@ -79,21 +79,24 @@
|
||||
@foreach (var item in Model)
|
||||
{
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Organization)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Name)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Description)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Capacity)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.PrimaryCode)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SecondaryCode)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Writable)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Duplicate)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DefaultDensity)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.BitsPerMm)
|
||||
</td>
|
||||
@@ -104,16 +107,13 @@
|
||||
@Html.DisplayFor(modelItem => item.Tracks)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Capacity)
|
||||
@Html.DisplayFor(modelItem => item.DefaultDensity)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Organization)
|
||||
@Html.DisplayFor(modelItem => item.Writable)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Name)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.Description)
|
||||
@Html.DisplayFor(modelItem => item.Duplicate)
|
||||
</td>
|
||||
<td>
|
||||
<a asp-action="Delete" asp-route-id="@item.Id" class="btn btn-danger">Delete</a>
|
||||
|
||||
Reference in New Issue
Block a user