Reformat.

This commit is contained in:
2019-11-08 20:30:13 +00:00
parent 86ae22c42f
commit 8db64d17ae
189 changed files with 10672 additions and 12092 deletions

View File

@@ -35,48 +35,49 @@
}
<table class="table">
<thead>
<tr>
<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>
<th>
@Html.DisplayNameFor(model => model.Width)
</th>
<th>
@Html.DisplayNameFor(model => model.Tracks)
</th>
<th>
@Html.DisplayNameFor(model => model.Capacity)
</th>
<th>
@Html.DisplayNameFor(model => model.Organization)
</th>
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th>
@Html.DisplayNameFor(model => model.Description)
</th>
<th></th>
</tr>
<tr>
<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>
<th>
@Html.DisplayNameFor(model => model.Width)
</th>
<th>
@Html.DisplayNameFor(model => model.Tracks)
</th>
<th>
@Html.DisplayNameFor(model => model.Capacity)
</th>
<th>
@Html.DisplayNameFor(model => model.Organization)
</th>
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th>
@Html.DisplayNameFor(model => model.Description)
</th>
<th></th>
</tr>
</thead>
<tbody>
@foreach (var item in Model) {
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.PrimaryCode)
@@ -118,8 +119,8 @@
<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>
</td>
</tr>
}
}
</tbody>
</table>
</table>