fixes edition of membership
This commit is contained in:
parent
d2a6209635
commit
87a3f56da6
5 changed files with 49 additions and 45 deletions
|
|
@ -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>
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue