fixes edition of membership

This commit is contained in:
Paul Schneider 2017-12-19 10:58:44 +01:00
commit 87a3f56da6
5 changed files with 49 additions and 45 deletions

View file

@ -17,6 +17,10 @@
</tr>
@foreach (var item in Model) {
var itemKey = new { Id = item.CircleId } ;
<tr>
<td>
@Html.DisplayFor(m=>item.Circle)
@ -26,9 +30,7 @@
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
@Html.ActionLink("Delete", "Delete", itemKey)
</td>
</tr>
}