@using MileageTraker.Web.ViewModels.VehicleService @model MileageTraker.Web.ViewModels.CreateLog.CreateLogViewModel @{ ViewBag.Title = "Enter Mileage Log"; } @Html.Partial("_StatusMessage")

@ViewBag.Title

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