38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
@model isnd.Data.PackageVersion
|
|
|
|
@{
|
|
ViewData["Title"] = "Details";
|
|
}
|
|
|
|
<h2>Details</h2>
|
|
|
|
<div>
|
|
<h4>PackageVersion</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.IsPrerelease)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.IsPrerelease)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.PackageId)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.PackageId)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.FullString)
|
|
</dt>
|
|
<dd>
|
|
<a href="@Constants.ApiVersionPrefix@Model.NugetLink" >@Html.DisplayFor(model => model.FullString)</a>
|
|
<a href="@Constants.ApiVersionPrefix@Model.NuspecLink" >nuspec</a>
|
|
</dd>
|
|
</dl>
|
|
</div>
|
|
<div>
|
|
@Html.ActionLink("Edit", "Edit", new { pkgid = Model.PackageId, version = Model.FullString }) |
|
|
<a asp-action="Index">Back to List</a>
|
|
</div>
|