This commit is contained in:
2016-08-08 14:47:35 -04:00
commit 0b0cb7c73a
156 changed files with 114318 additions and 0 deletions
@@ -0,0 +1,22 @@
@using InventoryTraker.Web.Helpers
@using InventoryTraker.Web.Models
@model dynamic
@{
ViewBag.Title = "Reports";
}
<h1 class="page-header">
Reports
</h1>
@(Html.Angular().GridFor<ReportController>(c => c.NewCustomers())
.Title("New Customers")
.Columns<NewCustomerReportViewModel>(config =>
{
config.Add(x => x.Name);
config.Add(x => x.WorkEmail);
config.Add(x => x.CreateDate, "Date Joined", "date: 'MM/dd/yyyy'");
}))
<lost-customers-report ></lost-customers-report>