Sort GPU admin fields.

This commit is contained in:
2019-05-18 19:47:05 +01:00
parent d8a903eef4
commit c93b42e38e
4 changed files with 36 additions and 60 deletions

View File

@@ -42,6 +42,12 @@
<h4>GPU</h4> <h4>GPU</h4>
<hr /> <hr />
<dl class="dl-horizontal"> <dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Company)
</dt>
<dd>
@Html.DisplayFor(model => model.Company.Name)
</dd>
<dt> <dt>
@Html.DisplayNameFor(model => model.Name) @Html.DisplayNameFor(model => model.Name)
</dt> </dt>
@@ -90,17 +96,17 @@
<dd> <dd>
@Html.DisplayFor(model => model.Transistors) @Html.DisplayFor(model => model.Transistors)
</dd> </dd>
<dt>
@Html.DisplayNameFor(model => model.Company)
</dt>
<dd>
@Html.DisplayFor(model => model.Company.Name)
</dd>
</dl> </dl>
<form asp-action="Delete"> <form asp-action="Delete">
<input type="hidden" asp-for="Id" /> <input type="hidden"
<input type="submit" value="Delete" class="btn btn-default" /> | asp-for="Id" />
<a asp-action="Index">Back to List</a> <input class="btn btn-danger"
type="submit"
value="Delete" />
<a asp-action="Index"
class="btn btn-secondary">
Back to List
</a>
</form> </form>
</div> </div>

View File

@@ -98,6 +98,6 @@
</dl> </dl>
</div> </div>
<div> <div>
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> | <a asp-action="Edit" asp-route-id="@Model.Id" class="btn btn-primary">Edit</a>
<a asp-action="Index">Back to List</a> <a asp-action="Index" class="btn btn-secondary">Back to List</a>
</div> </div>

View File

@@ -48,17 +48,7 @@
<input type="hidden" <input type="hidden"
asp-for="Id" /> asp-for="Id" />
<div class="form-group"> <div class="form-group">
<label asp-for="Name" <label asp-for="Company"
class="control-label">
</label>
<input asp-for="Name"
class="form-control" />
<span asp-validation-for="Name"
class="text-danger">
</span>
</div>
<div class="form-group">
<label asp-for="CompanyId"
class="control-label"> class="control-label">
</label> </label>
<select asp-for="CompanyId" <select asp-for="CompanyId"
@@ -69,6 +59,16 @@
class="text-danger"> class="text-danger">
</span> </span>
</div> </div>
<div class="form-group">
<label asp-for="Name"
class="control-label">
</label>
<input asp-for="Name"
class="form-control" />
<span asp-validation-for="Name"
class="text-danger">
</span>
</div>
<div class="form-group"> <div class="form-group">
<label asp-for="ModelCode" <label asp-for="ModelCode"
class="control-label"> class="control-label">

View File

@@ -47,6 +47,9 @@
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
<th>
@Html.DisplayNameFor(model => model.Company)
</th>
<th> <th>
@Html.DisplayNameFor(model => model.Name) @Html.DisplayNameFor(model => model.Name)
</th> </th>
@@ -56,24 +59,6 @@
<th> <th>
@Html.DisplayNameFor(model => model.Introduced) @Html.DisplayNameFor(model => model.Introduced)
</th> </th>
<th>
@Html.DisplayNameFor(model => model.Package)
</th>
<th>
@Html.DisplayNameFor(model => model.Process)
</th>
<th>
@Html.DisplayNameFor(model => model.ProcessNm)
</th>
<th>
@Html.DisplayNameFor(model => model.DieSize)
</th>
<th>
@Html.DisplayNameFor(model => model.Transistors)
</th>
<th>
@Html.DisplayNameFor(model => model.Company)
</th>
<th></th> <th></th>
</tr> </tr>
</thead> </thead>
@@ -81,6 +66,9 @@
@foreach(Gpu item in Model) @foreach(Gpu item in Model)
{ {
<tr> <tr>
<td>
@Html.DisplayFor(modelItem => item.Company.Name)
</td>
<td> <td>
@Html.DisplayFor(modelItem => item.Name) @Html.DisplayFor(modelItem => item.Name)
</td> </td>
@@ -90,24 +78,6 @@
<td> <td>
@Html.DisplayFor(modelItem => item.Introduced) @Html.DisplayFor(modelItem => item.Introduced)
</td> </td>
<td>
@Html.DisplayFor(modelItem => item.Package)
</td>
<td>
@Html.DisplayFor(modelItem => item.Process)
</td>
<td>
@Html.DisplayFor(modelItem => item.ProcessNm)
</td>
<td>
@Html.DisplayFor(modelItem => item.DieSize)
</td>
<td>
@Html.DisplayFor(modelItem => item.Transistors)
</td>
<td>
@Html.DisplayFor(modelItem => item.Company.Name)
</td>
<td> <td>
<a asp-action="Details" <a asp-action="Details"
asp-route-id="@item.Id" asp-route-id="@item.Id"