Y2S1-Web_Apps_and_Services/ThAmCo.Events/Views/Food/Delete.cshtml

39 lines
864 B
Plaintext
Raw Normal View History

2020-06-07 21:36:12 +00:00
@model ThAmCo.Events.Data.Food
@{
ViewData["Title"] = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>Food</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Id)
</dt>
<dd>
@Html.DisplayFor(model => model.Id)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Items)
</dt>
<dd>
@Html.DisplayFor(model => model.Items)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Price)
</dt>
<dd>
@Html.DisplayFor(model => model.Price)
</dd>
</dl>
<form asp-action="Delete">
<input type="submit" value="Delete" class="btn btn-default" /> |
<a asp-action="Index">Back to List</a>
</form>
</div>