Hyper-links
This commit is contained in:
parent
88de546f89
commit
ebde45eb75
7 changed files with 452 additions and 0 deletions
30
Yavsc/Views/HyperLink/Details.cshtml
Normal file
30
Yavsc/Views/HyperLink/Details.cshtml
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue