import json from config_utils import collect_layout_tokens, load_datasource from factory import load_json, build_table, table_token_key, iter_table_items, PAGES_DIR def collect_tokens(cfg): tokens = collect_layout_tokens(cfg) tokens['ACCOUNT_LEVEL_OPTIONS'] = json.dumps([ {'value': 'viewer', 'label': 'Viewer (read-only access to live data)'}, {'value': 'administrator', 'label': 'Administrator (can modify configuration)'}, {'value': 'manager', 'label': 'Manager (full access including account management)'}, ]) content = load_json(f'{PAGES_DIR}/accountmanage/content.json') for table_item in iter_table_items(content.get('items', [])): ds = table_item.get('datasource', '') tokens[table_token_key(ds)] = build_table(table_item, tokens, load_datasource(ds)) return tokens