Spaces:
Configuration error
Configuration error
File size: 1,907 Bytes
1519172 7288c34 1519172 7288c34 1519172 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | """Widget group definitions — one file per category."""
from app.kpi_cache.widget_groups.operations import OPERATIONS_WIDGETS
from app.kpi_cache.widget_groups.inventory import INVENTORY_WIDGETS
from app.kpi_cache.widget_groups.financial import FINANCIAL_WIDGETS
from app.kpi_cache.widget_groups.sales import SALES_WIDGETS
from app.kpi_cache.widget_groups.customers import CUSTOMERS_WIDGETS
from app.kpi_cache.widget_groups.catalogue import CATALOGUE_WIDGETS
from app.kpi_cache.widget_groups.spa_bookings import SPA_BOOKINGS_WIDGETS
from app.kpi_cache.widget_groups.trade_network import TRADE_NETWORK_WIDGETS
from app.kpi_cache.widget_groups.sales_charts import SALES_CHART_WIDGETS
from app.kpi_cache.widget_groups.operations_charts import OPERATIONS_CHART_WIDGETS
from app.kpi_cache.widget_groups.staff_charts import STAFF_CHART_WIDGETS
from app.kpi_cache.widget_groups.customers_charts import CUSTOMERS_CHART_WIDGETS
from app.kpi_cache.widget_groups.catalogue_charts import CATALOGUE_CHART_WIDGETS
from app.kpi_cache.widget_groups.sales_tables import SALES_TABLE_WIDGETS
from app.kpi_cache.widget_groups.operations_tables import OPERATIONS_TABLE_WIDGETS
from app.kpi_cache.widget_groups.staff_tables import STAFF_TABLE_WIDGETS
from app.kpi_cache.widget_groups.customers_tables import CUSTOMERS_TABLE_WIDGETS
from app.kpi_cache.widget_groups.catalogue_tables import CATALOGUE_TABLE_WIDGETS
__all__ = [
"OPERATIONS_WIDGETS",
"INVENTORY_WIDGETS",
"FINANCIAL_WIDGETS",
"SALES_WIDGETS",
"CUSTOMERS_WIDGETS",
"CATALOGUE_WIDGETS",
"SPA_BOOKINGS_WIDGETS",
"TRADE_NETWORK_WIDGETS",
"SALES_CHART_WIDGETS",
"OPERATIONS_CHART_WIDGETS",
"STAFF_CHART_WIDGETS",
"CUSTOMERS_CHART_WIDGETS",
"CATALOGUE_CHART_WIDGETS",
"SALES_TABLE_WIDGETS",
"OPERATIONS_TABLE_WIDGETS",
"STAFF_TABLE_WIDGETS",
"CUSTOMERS_TABLE_WIDGETS",
"CATALOGUE_TABLE_WIDGETS",
]
|