2020-02-10 02:10:18 +00:00
|
|
|
@model Marechai.Database.Models.ResolutionsByGpu
|
2019-05-19 15:26:59 +01:00
|
|
|
|
|
|
|
|
@{
|
|
|
|
|
ViewData["Title"] = "Edit";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<h1>Edit</h1>
|
|
|
|
|
|
|
|
|
|
<h4>Resolution by GPU</h4>
|
|
|
|
|
<hr />
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-4">
|
|
|
|
|
<form asp-action="Edit">
|
|
|
|
|
<div asp-validation-summary="ModelOnly"
|
|
|
|
|
class="text-danger">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label asp-for="GpuId"
|
|
|
|
|
class="control-label">
|
|
|
|
|
</label>
|
|
|
|
|
<select asp-for="GpuId"
|
|
|
|
|
class="form-control"
|
|
|
|
|
asp-items="ViewBag.GpuId">
|
|
|
|
|
</select>
|
|
|
|
|
<span asp-validation-for="GpuId"
|
|
|
|
|
class="text-danger">
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label asp-for="ResolutionId"
|
|
|
|
|
class="control-label">
|
|
|
|
|
</label>
|
|
|
|
|
<select asp-for="ResolutionId"
|
|
|
|
|
class="form-control"
|
|
|
|
|
asp-items="ViewBag.ResolutionId">
|
|
|
|
|
</select>
|
|
|
|
|
<span asp-validation-for="ResolutionId"
|
|
|
|
|
class="text-danger">
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<input type="hidden"
|
|
|
|
|
asp-for="Id" />
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<input class="btn btn-primary"
|
|
|
|
|
type="submit"
|
|
|
|
|
value="Save" />
|
|
|
|
|
<a asp-action="Index"
|
|
|
|
|
class="btn btn-secondary">
|
|
|
|
|
Back to List
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|