fixes edition of membership
This commit is contained in:
parent
d2a6209635
commit
87a3f56da6
5 changed files with 49 additions and 45 deletions
|
|
@ -1,18 +1,17 @@
|
|||
@model CircleMember
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Details";
|
||||
ViewData["Title"] = $"{Model.Member.UserName}, du cercle {Model.Circle.Name}" ;
|
||||
}
|
||||
|
||||
<h2>Details</h2>
|
||||
<h2></h2>
|
||||
|
||||
<div>
|
||||
<h4>CircleMember</h4>
|
||||
<h4>Un membre du cercle @Model.Circle.Name</h4>
|
||||
<hr />
|
||||
<dl class="dl-horizontal">
|
||||
</dl>
|
||||
@Html.DisplayFor(m=>Model.Member)
|
||||
</div>
|
||||
<p>
|
||||
@Html.ActionLink("Edit", "Edit", new { /* id = Model.PrimaryKey */ }) |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
@Html.ActionLink(SR["Delete"], "Delete", new { id = Model.CircleId }) |
|
||||
<a asp-action="Index">@SR["Back to List"]</a>
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue