Y2S1-Web_Apps_and_Services/ThAmCo.Events/Views/GuestBookings/Details.cshtml
2020-06-07 22:36:12 +01:00

37 lines
829 B
Plaintext

@model ThAmCo.Events.Data.GuestBooking
@{
ViewData["Title"] = "Details";
}
<h2>Details</h2>
<div>
<h4>GuestBooking</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Customer)
</dt>
<dd>
@Html.DisplayFor(model => model.Customer.Email)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Event)
</dt>
<dd>
@Html.DisplayFor(model => model.Event.Title)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Attended)
</dt>
<dd>
@Html.DisplayFor(model => model.Attended)
</dd>
</dl>
</div>
<div>
@Html.ActionLink("Edit", "Edit", new { /* id = Model.PrimaryKey */ }) |
<a asp-action="Index">Back to List</a>
</div>