Spaces:
Configuration error
Configuration error
File size: 586 Bytes
1519172 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """Customers category KPI widget definitions."""
CUSTOMERS_WIDGETS: dict = {
"wid_customer_growth_001": {
"title": "Customer Growth",
"category": "customers",
"unit": "count",
"description": "New customers added in the period",
"drill_down_url": "/retail/customers",
},
"wid_repeat_customer_rate_001": {
"title": "Repeat Customer Rate",
"category": "customers",
"unit": "%",
"description": "Percentage of customers with more than one purchase",
"drill_down_url": "/retail/customers",
},
}
|