A couple of fixes

This commit is contained in:
2015-09-25 12:52:21 -04:00
parent b420193c3d
commit a6ea6df177
5 changed files with 31 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
@Html.Partial("_StatusMessage")
<h2 class="center-content"><i class="fa fa-road"></i> @ViewBag.Title</h2>
<h2 class="center-content"><i class="fa fa-tachometer"></i> @ViewBag.Title</h2>
@using (Html.BeginForm("Import", "FuelLog", FormMethod.Post, new { enctype="multipart/form-data", @class = "form-horizontal well center-content", style="max-width:440px"}))
{
+1 -1
View File
@@ -4,7 +4,7 @@
@{
ViewBag.Title = "Fuel Logs";
var grid = new WebGrid(Model.FuelLogs, rowsPerPage: 45);
var parameters = new {Year = Model.FiscalYear, Model.Month};
var parameters = new {FiscalYear = Model.FiscalYear, Model.Month, Model.Unmatched};
}
@section Styles {
<link href="@Url.Content("~/Content/VehicleColors.css")" rel="stylesheet" type="text/css" />