@model IList @{ ViewBag.Title = "Import Logs"; } @section Styles { } @{ Html.RenderPartial("BackToLogs"); } @Html.Partial("_StatusMessage")

@ViewBag.Title

Driver: @ViewData["UserFullName"]

@for (var i = 0; i < Model.Count; i++) { var viewModel = Model[i]; @Html.EditorFor(x => viewModel) }
Import Status Vehicle ID End Odometer Type Destination City Purpose Notes Gas Purchased Date
@Html.ValueFor(x => viewModel.VehicleId) @Html.ValueFor(x => viewModel.EndOdometer) @Html.ValueFor(x => viewModel.LogType) @Html.ValueFor(x => viewModel.CityName) @Html.ValueFor(x => viewModel.Purpose) @Html.ValueFor(x => viewModel.Notes) @Html.ValueFor(x => viewModel.GasPurchased) @Html.ValueFor(x => viewModel.Date)
@section Scripts { }