Syllabus Audit Report
University / Institution Name
Course: Undefined
Readiness Score
0%
Complete
Audit Summary
Critical Items Found: 0 / 0
Total Items Checked: 0 / 0
Missing Critical Items
Everything looks good!
Missing Recommended Items
Detailed Content Breakdown
Syllabus Components
Report Settings
Reset Tool
This will uncheck all items and clear institution details.
All recommended items present!
'; } else { recListEl.innerHTML = missingRec.map(txt => `${txt}
`).join('');
}
// Update Chart
if(sccChart) {
sccChart.data.datasets[0].data = [checkedCount, totalItems - checkedCount];
sccChart.update();
}
// Prepare PDF Breakdown (Hidden Element)
sccRenderPDFBreakdown();
}
function sccRenderPDFBreakdown() {
const container = document.getElementById('scc-pdf-breakdown');
container.innerHTML = '';
SCC_DATA.forEach(cat => {
let catHtml = `${cat.category}
`; cat.items.forEach(item => { const icon = sccState[item.id] ? "☑" : "☐"; const color = sccState[item.id] ? "#000" : (item.type === 'critical' ? "#e03131" : "#666"); catHtml += `
${icon} ${item.text} ${!sccState[item.id] && item.type === 'critical' ? '(MISSING)' : ''}
`;
});
catHtml += `