Vehicle cost report

This commit is contained in:
2015-10-24 14:28:13 -04:00
parent 1fb8c54076
commit ad0b04695d
11 changed files with 238 additions and 17 deletions
+15
View File
@@ -0,0 +1,15 @@
@model IList<int>
@{
ViewBag.Title = "Vehicle Cost Report";
}
@Html.Partial("_StatusMessage")
<h2 id="vehicle-title"><i class="fa fa-money"></i> @ViewBag.Title</h2>
@foreach (var item in Model) {
<p>
@Html.ActionLink("FY" + item.ToString(), "VehicleCostReport", new { fiscalYear = item }, new { @class = "btn" })
</p>
}