@using MileageTraker.Web.Models @using MileageTraker.Web.Utility @model MileageTraker.Web.ViewModels.VehicleService.VehicleServiceResultsViewModel
@Html.Label("Year", "Year") @Html.DropDownList("Year", new SelectList(Model.AvailableYearMonths.Keys, Model.Year), "Select Year", new { @class = "input-small" })
@Html.Label("Month", "Month") @Html.DropDownList("Month", new SelectList(Model.SelectedYearMonths, Model.Month), "All Months", new { @class = "input-small" })
@Html.Label("MonthRange", "Range") @Html.DropDownList("MonthRange", new SelectList(Enumerable.Range(1,12), Model.MonthRange), new { @class = "input-mini" })
@Html.Label("VehicleId", "Vehicle Id") @Html.TextBoxFor(m => m.VehicleId, new {@class="search-query input-mini", placeholder="Vehicle"})