@using MileageTraker.Web.Models @using MileageTraker.Web.Utility @model MileageTraker.Web.ViewModels.FuelLog.FuelLogResultsViewModel
@Html.Label("FiscalYear", "Fiscal Year") @Html.DropDownList("FiscalYear", new SelectList(Model.AvailableYearMonths.Keys, Model.FiscalYear), "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("Unmatched", "Unmatched Only", new{style = "padding-top:22px"})