mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
@model DiscImageChef.Server.Models.OperatingSystem
|
|
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta content="width=device-width" name="viewport" />
|
|
<title>Delete</title>
|
|
</head>
|
|
<body>
|
|
<h3>Are you sure you want to delete this?</h3>
|
|
<div>
|
|
<h4>OperatingSystem</h4>
|
|
<hr />
|
|
<dl class="row">
|
|
<dt class="col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Name)
|
|
</dt>
|
|
<dd class="col-sm-10">
|
|
@Html.DisplayFor(model => model.Name)
|
|
</dd>
|
|
<dt class="col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Version)
|
|
</dt>
|
|
<dd class="col-sm-10">
|
|
@Html.DisplayFor(model => model.Version)
|
|
</dd>
|
|
<dt class="col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Count)
|
|
</dt>
|
|
<dd class="col-sm-10">
|
|
@Html.DisplayFor(model => model.Count)
|
|
</dd>
|
|
</dl>
|
|
<form asp-action="Delete">
|
|
<input type="hidden" asp-for="Id" />
|
|
<input class="btn btn-danger" type="submit" value="Delete" /> |
|
|
<a asp-action="Index">Back to List</a>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |