refactor: remove Delete post button (for now)

This commit is contained in:
Oliver Booth 2024-02-28 18:31:08 +00:00
parent 9c3bf6e5a2
commit caaba043a5
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 1 additions and 3 deletions

View File

@ -76,9 +76,7 @@
<a asp-page="EditBlogPost" asp-route-id="@post.Id" class="btn btn-info">
<i class="fa-solid fa-pen-to-square"></i>
</a>
<a asp-controller="BlogAdmin" asp-action="DeletePost" asp-route-pid="@post.Id" class="btn btn-danger">
<i class="fa-solid fa-trash"></i>
</a>
<button class="btn btn-danger"><i class="fa-solid fa-trash"></i></button>
</td>
</tr>
}