mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
33 lines
733 B
Plaintext
33 lines
733 B
Plaintext
@model Cicm.Database.Models.ScreensByMachine
|
|
|
|
@{
|
|
ViewData["Title"] = "Details";
|
|
}
|
|
|
|
<h1>Details</h1>
|
|
|
|
<div>
|
|
<h4>ScreensByMachine</h4>
|
|
<hr />
|
|
<dl class="row">
|
|
<dt class="col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Screen)
|
|
</dt>
|
|
<dd class="col-sm-10">
|
|
@Html.DisplayFor(model => model.Screen.Type)
|
|
</dd>
|
|
<dt class="col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Machine)
|
|
</dt>
|
|
<dd class="col-sm-10">
|
|
@Html.DisplayFor(model => model.Machine.Name)
|
|
</dd>
|
|
</dl>
|
|
</div>
|
|
<div>
|
|
<a asp-action="Edit"
|
|
asp-route-id="@Model.Id">
|
|
Edit
|
|
</a> |
|
|
<a asp-action="Index">Back to List</a>
|
|
</div> |