yavsc/src/Yavsc/Views/HyperLink/Details.cshtml

43 lines
997 B
Plaintext

@model Yavsc.Models.Relationship.HyperLink
@{
7 years ago
ViewData["Title"] = @SR["Details"];
}
7 years ago
<h2>@SR["Details"]</h2>
<div>
<h4>@SR["HyperLink"]</h4>
<hr />
<dl class="dl-horizontal">
7 years ago
<dt>
@Html.DisplayNameFor(model => model.HRef)
</dt>
<dd>
@Html.DisplayFor(model => model.HRef)
7 years ago
</dd>
<dt>
@Html.DisplayNameFor(model => model.Method)
</dt>
<dd>
@Html.DisplayFor(model => model.Method)
</dd>
<dt>
@Html.DisplayNameFor(model => model.ContentType)
</dt>
<dd>
@Html.DisplayFor(model => model.ContentType)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Rel)
</dt>
<dd>
@Html.DisplayFor(model => model.Rel)
</dd>
</dl>
</div>
<p>
@Html.ActionLink(SR["Edit"], "Edit", new { /* id = Model.PrimaryKey */ }) |
7 years ago
<a asp-action="Index">@SR["Back to List"]</a>
</p>