23 lines
489 B
Plaintext
23 lines
489 B
Plaintext
@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>
|