97 remaining

This commit is contained in:
Paul Schneider 2023-03-20 19:38:50 +00:00
commit 49ca652549
43 changed files with 103 additions and 168 deletions

View file

@ -37,6 +37,6 @@
</dl>
</div>
<p>
@Html.ActionLink(SR["Edit"], "Edit", new { /* id = Model.PrimaryKey */ }) |
@Html.ActionLink("Edit", "Edit", new { /* id = Model.PrimaryKey */ }) |
<a asp-action="Index">Back to List</a>
</p>

View file

@ -41,9 +41,9 @@
@Html.DisplayFor(modelItem => item.Rel)
</td>
<td>
@Html.ActionLink(SR["Edit"], "Edit", new { hRef=item.HRef, method = item.Method }) |
@Html.ActionLink(SR["Details"], "Details", new { hRef=item.HRef, method = item.Method }) |
@Html.ActionLink(SR["Delete"], "Delete", new { hRef=item.HRef, method = item.Method })
@Html.ActionLink("Edit", "Edit", new { hRef=item.HRef, method = item.Method }) |
@Html.ActionLink("Details", "Details", new { hRef=item.HRef, method = item.Method }) |
@Html.ActionLink("Delete", "Delete", new { hRef=item.HRef, method = item.Method })
</td>
</tr>
}