Files
Aaru.Server/DiscImageChef.Server/Areas/Admin/Views/BlockDescriptors/Delete.cshtml

49 lines
1.2 KiB
Plaintext

@model DiscImageChef.CommonTypes.Metadata.BlockDescriptor
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Delete</title>
</head>
<body>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>BlockDescriptor</h4>
<hr />
<dl class="row">
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.Density)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.Density)
</dd>
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.Blocks)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.Blocks)
</dd>
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.BlockLength)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.BlockLength)
</dd>
</dl>
<form asp-action="Delete">
<input type="hidden" asp-for="Id" />
<input type="submit" value="Delete" class="btn btn-danger" /> |
<a asp-action="Index">Back to List</a>
</form>
</div>
</body>
</html>