@model MileageTraker.Web.ViewModels.Log.LogViewModel @{ ViewBag.Title = "Delete Log"; } @{ Html.RenderPartial("BackToLogs"); } @Html.Partial("_StatusMessage")

@ViewBag.Title

Are you sure you wish to delete this log?
@Html.DisplayForModel() @using (Html.BeginForm("Delete", "Log", FormMethod.Post, new { @class = "form-horizontal" })) {
@Html.ActionLink("Cancel", "Details", new { id = Model.LogId }, new { @class = "btn" })
}