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,15 +35,16 @@
}
<table class="table">
<thead>
<tr>
<th>
@Html.DisplayNameFor(model => model.Code)
</th>
<th></th>
</tr>
<tr>
<th>
@Html.DisplayNameFor(model => model.Code)
</th>
<th></th>
</tr>
</thead>
<tbody>
@foreach (var item in Model) {
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Code)
@@ -52,8 +53,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>