Loading candidate data...
This candidate hasn't been assigned any interviews yet.
| Interview ID | Position | Interviewer | Quizzes | Status | Date | Action |
|---|---|---|---|---|---|---|
| INT-{{ String(i + 1).padStart(3, '0') }} | {{ interview.position || '—' }} |
{{ interview.interviewerId?.name?.charAt(0) || '?' }}
{{ interview.interviewerId?.name || 'Unassigned' }}
|
{{ (interview.quizzes || []).length }} Quiz{{ (interview.quizzes || []).length !== 1 ? 'zes' : '' }} | {{ getStatusLabel(interview.status) }} | {{ interview.dateOfInterview | date:'dd MMM yyyy' }} |
Interview Details
Loading quiz results...
No assessment rounds were linked to this interview.
| Quiz ID | Quiz Name | Topic | Level | Comfort Level | Score | Percentage | Time Taken | Date | Action |
|---|---|---|---|---|---|---|---|---|---|
{{ getQuizId(iq, i) }}
|
{{ iq.quizId?.title || iq.title || 'Quiz' }} | {{ iq.quizId?.category || 'N/A' }} | {{ iq.quizId?.difficulty | uppercase }} | {{ getComfortLevel(iq.quizId?.category) }} | @if (getSubmissionForQuiz(iq.quizId?._id || iq.quizId); as sub) { {{ sub.score }}/{{ sub.totalMarks }} } @else if (iq.score !== null && iq.score !== undefined) { {{ iq.score }}/{{ iq.totalMarks }} } @else { Not Taken } | @if (getSubmissionForQuiz(iq.quizId?._id || iq.quizId); as sub) { {{ sub.percentage }}% } @else if (iq.percentage !== null && iq.percentage !== undefined) { {{ iq.percentage }}% } @else { — } | @if (getSubmissionForQuiz(iq.quizId?._id || iq.quizId); as sub) { {{ formatTime(sub.timeTaken) }} } @else { — } | @if (getSubmissionForQuiz(iq.quizId?._id || iq.quizId); as sub) { {{ sub.submittedAt | date:'dd MMM yyyy' }} } @else { — } | @if (getSubmissionForQuiz(iq.quizId?._id || iq.quizId); as sub) { Review open_in_new } @else { Pending } |