@model UnicornStore.Models.Blessing @{ ViewBag.Title = "Delete"; } @if (Model != null) {

Delete Confirmation

Are you sure you want to delete the blessing titled @Model.Title?

@using (Html.BeginForm()) {

@Html.ActionLink("Back to List", "Index")

} } else { @Html.Label(null, "Unable to locate the blessing") }