Hyper-links

This commit is contained in:
Paul Schneider 2017-06-03 01:08:04 +02:00
commit ebde45eb75
7 changed files with 452 additions and 0 deletions

View file

@ -0,0 +1,30 @@
@model Yavsc.Models.Relationship.HyperLink
@{
ViewData["Title"] = "Details";
}
<h2>Details</h2>
<div>
<h4>HyperLink</h4>
<hr />
<dl class="dl-horizontal">
<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("Edit", "Edit", new { /* id = Model.PrimaryKey */ }) |
<a asp-action="Index">Back to List</a>
</p>