isn/src/isnd/Views/Packages/Delete.cshtml

54 lines
1.4 KiB
Plaintext

3 years ago
@model isnd.Data.PackageVersion
@{
ViewData["Title"] = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>PackageVersion</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Major)
</dt>
<dd>
@Html.DisplayFor(model => model.Major)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Minor)
</dt>
<dd>
@Html.DisplayFor(model => model.Minor)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Patch)
</dt>
<dd>
@Html.DisplayFor(model => model.Patch)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IsPrerelease)
</dt>
<dd>
@Html.DisplayFor(model => model.IsPrerelease)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Package)
</dt>
<dd>
@Html.DisplayFor(model => model.Package.Id)
</dd>
</dl>
<form asp-action="DeleteConfirmed">
3 years ago
<input type="hidden" asp-for="PackageId" />
<input type="hidden" asp-for="FullString" />
<input type="hidden" asp-for="Type" />
<input type="submit" value="Delete" class="btn btn-default" /> |
<a asp-action="Index">Back to List</a>
</form>
</div>