41 lines
1013 B
Plaintext
41 lines
1013 B
Plaintext
@model ThAmCo.Events.Data.GuestBooking
|
|
|
|
@{
|
|
ViewData["Title"] = "Delete";
|
|
}
|
|
|
|
<h2>Delete</h2>
|
|
|
|
<h3>Are you sure you want to delete this?</h3>
|
|
<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>
|
|
|
|
<form asp-action="Delete">
|
|
<input type="hidden" asp-for="CustomerId" />
|
|
<input type="hidden" asp-for="EventId" />
|
|
<input type="submit" value="Delete" class="btn btn-default" /> |
|
|
<a asp-action="Index">Back to List</a>
|
|
</form>
|
|
</div>
|