@model MileageTraker.Web.ViewModels.Log.LogViewModel
@{
ViewBag.Title = "Delete Log";
}
@{ Html.RenderPartial("BackToLogs"); }
@Html.Partial("_StatusMessage")
@Html.DisplayForModel()
@using (Html.BeginForm("Delete", "Log", FormMethod.Post, new { @class = "form-horizontal" }))
{
@Html.ActionLink("Cancel", "Details", new { id = Model.LogId }, new { @class = "btn" })
}