@if (loading()) {

Loading history...

} @else { @if (user()) {
{{ user().name?.charAt(0) }}

{{ user().name }}

{{ user().email }}

Candidate Level
@for (lvl of levels; track lvl.value) { }
}

Test History

@if (submissions().length === 0) {
📋

No tests taken yet

This student hasn't taken any quizzes.

} @else {
@for (sub of submissions(); track sub._id) { }
Quiz Score Percentage Time Taken Date Action
{{ sub.quizId?.title || 'Deleted Quiz' }} {{ sub.score }}/{{ sub.totalMarks }}
{{ sub.percentage }}%
{{ formatTime(sub.timeTaken) }} {{ sub.submittedAt | date:'medium' }} View Details
} }
@if (toast()) {
{{ toast()?.type === 'success' ? 'check_circle' : 'error' }} {{ toast()?.message }}
}