2020-05-24 02:12:37 +01: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">
|
2020-02-10 22:44:18 +00:00
|
|
|
<div asp-validation-summary="ModelOnly" class="text-danger">
|
2019-05-19 15:26:59 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
2020-02-10 22:44:18 +00:00
|
|
|
<label asp-for="GpuId" class="control-label">
|
2019-05-19 15:26:59 +01:00
|
|
|
</label>
|
2020-02-10 22:44:18 +00:00
|
|
|
<select asp-for="GpuId" class="form-control" asp-items="ViewBag.GpuId">
|
2019-05-19 15:26:59 +01:00
|
|
|
</select>
|
2020-02-10 22:44:18 +00:00
|
|
|
<span asp-validation-for="GpuId" class="text-danger">
|
2019-05-19 15:26:59 +01:00
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
2020-02-10 22:44:18 +00:00
|
|
|
<label asp-for="ResolutionId" class="control-label">
|
2019-05-19 15:26:59 +01:00
|
|
|
</label>
|
2020-02-10 22:44:18 +00:00
|
|
|
<select asp-for="ResolutionId" class="form-control" asp-items="ViewBag.ResolutionId">
|
2019-05-19 15:26:59 +01:00
|
|
|
</select>
|
2020-02-10 22:44:18 +00:00
|
|
|
<span asp-validation-for="ResolutionId" class="text-danger">
|
2019-05-19 15:26:59 +01:00
|
|
|
</span>
|
|
|
|
|
</div>
|
2020-02-10 22:44:18 +00:00
|
|
|
<input type="hidden" asp-for="Id" />
|
2019-05-19 15:26:59 +01:00
|
|
|
<div class="form-group">
|
2020-02-10 22:44:18 +00:00
|
|
|
<input class="btn btn-primary" type="submit" value="Save" />
|
|
|
|
|
<a asp-action="Index" class="btn btn-secondary">
|
2019-05-19 15:26:59 +01:00
|
|
|
Back to List
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|