@if (loading()) {
} @else if (quizInfo()) { arrow_back Back to Profile

{{ quizInfo().title }}

{{ percentage() }}%
check_circle {{ score() }}/{{ totalMarks() }} correct timer {{ formatTime(timeTaken()) }} calendar_today {{ submittedAt() | date:'medium' }}

Answer Review

@for (r of detailedResults(); track $index; let i = $index) {
Q{{ i + 1 }} {{ r.isCorrect ? 'Correct' : 'Incorrect' }}

{{ r.question }}

@for (opt of r.options; track opt) {
{{ r.correctAnswers.includes(opt) ? 'check_circle' : (r.studentAnswers.includes(opt) ? 'cancel' : 'radio_button_unchecked') }} {{ opt }}
}
}
}