Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

RegisteredCustomers.cshtml

@model CustomerReportsSearchModel

@{
    //page title
    ViewBag.PageTitle = T("Admin.Reports.Customers.RegisteredCustomers").Text;
    //active menu item (system name)
    NopHtml.SetActiveMenuItemSystemName("Registered customers");
}

@T("Admin.Reports.Customers.RegisteredCustomers")

@await Html.PartialAsync("Table", new DataTablesModel { Name = "registered-customers-grid", UrlRead = new DataUrl("ReportRegisteredCustomersList", "Report", null), Length = Model.RegisteredCustomers.PageSize, LengthMenu = Model.RegisteredCustomers.AvailablePageSizes, ColumnCollection = new List { new ColumnProperty(nameof(RegisteredCustomersReportModel.Period)) { Title = T("Admin.Reports.Customers.RegisteredCustomers.Fields.Period").Text }, new ColumnProperty(nameof(RegisteredCustomersReportModel.Customers)) { Title = T("Admin.Reports.Customers.RegisteredCustomers.Fields.Customers").Text, Width = "150" } } })