refactor: splitting models

This commit is contained in:
2026-08-07 10:43:42 -04:00
parent eb3c510911
commit f1288e155e
30 changed files with 453 additions and 413 deletions
+1 -5
View File
@@ -145,11 +145,7 @@ pub fn student(
out.push_str("## What this exam says about each learning objective\n\n");
out.push_str("| | Objective | You | Class | Items |\n|:--|:--|--:|--:|--:|\n");
for o in &summary.objectives {
let you = if o.status == Mastery::NotEnoughEvidence {
format!("{:.0}%", o.rate * 100.0)
} else {
format!("{:.0}%", o.rate * 100.0)
};
let you = format!("{:.0}%", o.rate * 100.0);
out.push_str(&format!(
"| {} | {} | {} | {:.0}% | {} |\n",
o.status.symbol(),