31 lines
614 B
Plaintext
31 lines
614 B
Plaintext
@model ThAmCo.Events.Data.Food
|
|
|
|
@{
|
|
ViewData["Title"] = "Details";
|
|
}
|
|
|
|
<h2>Details</h2>
|
|
|
|
<div>
|
|
<h4>Food</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<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>
|
|
</div>
|
|
<div>
|
|
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
|
<a asp-action="Index">Back to List</a>
|
|
</div>
|