Reorder compact disc offsets columns.

This commit is contained in:
2019-11-10 14:09:02 +00:00
parent eff4e55c09
commit bfc2f53c14

View File

@@ -37,12 +37,6 @@
<table class="table">
<thead>
<tr>
<th>
@Html.DisplayNameFor(model => model.AddedWhen)
</th>
<th>
@Html.DisplayNameFor(model => model.ModifiedWhen)
</th>
<th>
@Html.DisplayNameFor(model => model.Manufacturer)
</th>
@@ -58,6 +52,12 @@
<th>
@Html.DisplayNameFor(model => model.Agreement)
</th>
<th>
@Html.DisplayNameFor(model => model.AddedWhen)
</th>
<th>
@Html.DisplayNameFor(model => model.ModifiedWhen)
</th>
<th></th>
</tr>
</thead>
@@ -65,12 +65,6 @@
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.AddedWhen)
</td>
<td>
@Html.DisplayFor(modelItem => item.ModifiedWhen)
</td>
<td>
@Html.DisplayFor(modelItem => item.Manufacturer)
</td>
@@ -86,6 +80,12 @@
<td>
@Html.DisplayFor(modelItem => item.Agreement)
</td>
<td>
@Html.DisplayFor(modelItem => item.AddedWhen)
</td>
<td>
@Html.DisplayFor(modelItem => item.ModifiedWhen)
</td>
<td>
<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>