39 lines
864 B
Plaintext
39 lines
864 B
Plaintext
|
@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>
|