@model MileageTraker.Web.ViewModels.Log.LogQueryViewModel
@Html.DisplayNameFor(m => m.Year)
@Html.Encode(Model.Year)
@Html.DisplayNameFor(m => m.Month)
@Html.Encode(Model.Month)
@Html.DisplayNameFor(m => m.MonthRange)
@Html.Encode(Model.MonthRange)
@if (Model.LogType.HasValue) {
Type
@Html.Encode(Model.LogType)
} @if (!string.IsNullOrEmpty(Model.VehicleId)) {
Vehicle
@Html.Encode(Model.VehicleId)
} @if (!string.IsNullOrEmpty(Model.EmployeeName)) {
Driver
@Html.Encode(Model.EmployeeName)
}