Hyper-links
This commit is contained in:
parent
88de546f89
commit
ebde45eb75
7 changed files with 452 additions and 0 deletions
34
Yavsc/Views/HyperLink/Delete.cshtml
Normal file
34
Yavsc/Views/HyperLink/Delete.cshtml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
@model Yavsc.Models.Relationship.HyperLink
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Delete";
|
||||
}
|
||||
|
||||
<h2>Delete</h2>
|
||||
|
||||
<h3>Are you sure you want to delete this?</h3>
|
||||
<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>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<div class="form-actions no-color">
|
||||
<input type="submit" value="Delete" class="btn btn-default" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue