Tweaks to settings page + more declarations in manifests

This commit is contained in:
Patrick Robertson
2025-02-27 15:21:11 +00:00
parent efe9fdf915
commit 1e92c03b1d
6 changed files with 91 additions and 38 deletions

View File

@@ -31,7 +31,7 @@ output_schame = {
'configs': module.configs or None
}
) for module in all_modules_ordered_by_type),
'steps': dict((module_type, [module.name for module in modules_by_type[module_type]]) for module_type in MODULE_TYPES),
'steps': dict((f"{module_type}s", [module.name for module in modules_by_type[module_type]]) for module_type in MODULE_TYPES),
'configs': [m.name for m in all_modules_ordered_by_type if m.configs],
'module_types': MODULE_TYPES,
}