37 lines
829 B
Plaintext
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>
|