2019-05-19 13:47:13 +01:00
|
|
|
@model Cicm.Database.Models.InstructionSetExtensionsByProcessor
|
|
|
|
|
|
|
|
|
|
@{
|
|
|
|
|
ViewData["Title"] = "Delete";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<h1>Delete</h1>
|
|
|
|
|
|
|
|
|
|
<h3>Are you sure you want to delete this?</h3>
|
|
|
|
|
<div>
|
|
|
|
|
<h4>Instruction set extensions by processor</h4>
|
|
|
|
|
<hr />
|
|
|
|
|
<dl class="row">
|
|
|
|
|
<dt class="col-sm-2">
|
|
|
|
|
@Html.DisplayNameFor(model => model.Extension)
|
|
|
|
|
</dt>
|
|
|
|
|
<dd class="col-sm-10">
|
|
|
|
|
@Html.DisplayFor(model => model.Extension.Extension)
|
2019-05-31 01:40:35 +01:00
|
|
|
</dd>
|
2019-05-19 13:47:13 +01:00
|
|
|
<dt class="col-sm-2">
|
|
|
|
|
@Html.DisplayNameFor(model => model.Processor)
|
|
|
|
|
</dt>
|
|
|
|
|
<dd class="col-sm-10">
|
|
|
|
|
@Html.DisplayFor(model => model.Processor.Name)
|
2019-05-31 01:40:35 +01:00
|
|
|
</dd>
|
2019-05-19 13:47:13 +01:00
|
|
|
</dl>
|
|
|
|
|
|
|
|
|
|
<form asp-action="Delete">
|
|
|
|
|
<input type="hidden"
|
|
|
|
|
asp-for="Id" />
|
|
|
|
|
<input type="hidden"
|
|
|
|
|
asp-for="ProcessorId" />
|
|
|
|
|
<input type="hidden"
|
|
|
|
|
asp-for="ExtensionId" />
|
|
|
|
|
<input class="btn btn-danger"
|
|
|
|
|
type="submit"
|
|
|
|
|
value="Delete" />
|
|
|
|
|
<a asp-action="Index"
|
|
|
|
|
class="btn btn-secondary">
|
|
|
|
|
Back to List
|
|
|
|
|
</a>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|