mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Show processors in instruction set extension details.
This commit is contained in:
@@ -48,8 +48,29 @@
|
||||
@Html.DisplayFor(model => model.Extension)
|
||||
</dd>
|
||||
</dl>
|
||||
@if(ViewBag.Processors != null)
|
||||
{
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
Processors
|
||||
</dt>
|
||||
<dd>
|
||||
@foreach(string processor in ViewBag.Processors)
|
||||
{
|
||||
@processor<br />
|
||||
}
|
||||
</dd>
|
||||
</dl>
|
||||
}
|
||||
</div>
|
||||
<div>
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id" class="btn btn-primary">Edit</a>
|
||||
<a asp-action="Index" class="btn btn-secondary">Back to List</a>
|
||||
</div>
|
||||
<a asp-action="Edit"
|
||||
asp-route-id="@Model.Id"
|
||||
class="btn btn-primary">
|
||||
Edit
|
||||
</a>
|
||||
<a asp-action="Index"
|
||||
class="btn btn-secondary">
|
||||
Back to List
|
||||
</a>
|
||||
</div>
|
||||
Reference in New Issue
Block a user