@if (loading()) {
} @else if (quizInfo()) {
arrow_back Back to Profile
Answer Review
@for (r of detailedResults(); track $index; let i = $index) {
{{ r.question }}
@for (opt of r.options; track opt) {
{{ r.correctAnswers.includes(opt) ? 'check_circle' : (r.studentAnswers.includes(opt) ? 'cancel' : 'radio_button_unchecked') }}
{{ opt }}
}
}
}