@model MileageTraker.Web.ViewModels.CreateLog.EditPastViewModel @{ ViewBag.Title = "Edit Mileage Log"; } @Html.Partial("_StatusMessage")

@ViewBag.Title

@using (Html.BeginForm("EditPast", "CreateLog", FormMethod.Post, new { @class = "form-horizontal well center-content" })) {
@Html.Partial("_ValidationSummary") @Html.EditorForModel()
@Html.ActionLink("Cancel", "Index", new {}, new { @class = "btn" })
}