yavsc/src/Yavsc/Views/Devices/Delete.cshtml

46 lines
1.1 KiB
Text
Raw Normal View History

2023-03-19 17:57:55 +00:00
@model Yavsc.Models.Identity.DeviceDeclaration
2018-02-03 20:17:29 +01:00
@{
2023-03-20 09:13:16 +00:00
ViewData["Title"] = "Delete";
2018-02-03 20:17:29 +01:00
}
2023-03-20 09:13:16 +00:00
<h2>Delete</h2>
2018-02-03 20:17:29 +01:00
2023-03-20 09:13:16 +00:00
<h3>AreYourSureYouWantToDeleteThis</h3>
2018-02-03 20:17:29 +01:00
<div>
2023-03-19 17:57:55 +00:00
<h4>DeviceDeclaration</h4>
2018-02-03 20:17:29 +01:00
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.DeclarationDate)
</dt>
<dd>
@Html.DisplayFor(model => model.DeclarationDate)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Model)
</dt>
<dd>
@Html.DisplayFor(model => model.Model)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Platform)
</dt>
<dd>
@Html.DisplayFor(model => model.Platform)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Version)
</dt>
<dd>
@Html.DisplayFor(model => model.Version)
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
2023-03-20 09:13:16 +00:00
<a asp-action="Index">Back to List</a>
2018-02-03 20:17:29 +01:00
</div>
</form>
</div>