ce/regime/control/control_detail.sql
SELECT 'dynamic' AS component, sqlpage.run_sql('shell/shell.sql') AS properties;
-- not including breadcrumbs from sqlpage_aide_navigation
-- not including page title from sqlpage_aide_navigation
SELECT
'card' AS component,
'Control Details' AS title,
1 AS columns;
SELECT
control_code AS title,
'**Control Question:** ' || REPLACE(REPLACE(control_question, '▪', '-'), '
', '
') || '
' ||
'**Control Description:** ' || REPLACE(REPLACE(control_description, '▪', '-'), '
', '
') || '
' ||
'**Control Id:** ' || control_id || '
' ||
'**Control Domain:** ' || scf_domain || '
' ||
'**SCF Control:** ' || scf_control AS description_md
FROM compliance_regime_control
WHERE control_code = $id::TEXT AND control_type = $regimeType::TEXT;