Change order of fields in firewires list.

This commit is contained in:
2019-11-10 23:09:36 +00:00
parent 8af9efca3c
commit 02c8df9242

View File

@@ -36,18 +36,18 @@
<table class="table">
<thead>
<tr>
<th>
@Html.DisplayNameFor(model => model.VendorID)
</th>
<th>
@Html.DisplayNameFor(model => model.ProductID)
</th>
<th>
@Html.DisplayNameFor(model => model.Manufacturer)
</th>
<th>
@Html.DisplayNameFor(model => model.Product)
</th>
<th>
@Html.DisplayNameFor(model => model.VendorID)
</th>
<th>
@Html.DisplayNameFor(model => model.ProductID)
</th>
<th>
@Html.DisplayNameFor(model => model.RemovableMedia)
</th>
@@ -58,18 +58,18 @@
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.VendorID)
</td>
<td>
@Html.DisplayFor(modelItem => item.ProductID)
</td>
<td>
@Html.DisplayFor(modelItem => item.Manufacturer)
</td>
<td>
@Html.DisplayFor(modelItem => item.Product)
</td>
<td>
@Html.DisplayFor(modelItem => item.VendorID)
</td>
<td>
@Html.DisplayFor(modelItem => item.ProductID)
</td>
<td>
@Html.DisplayFor(modelItem => item.RemovableMedia)
</td>