{{ stats().total }} Total
{{ stats().pending }} In Progress
{{ stats().completed }} Completed
{{ stats().accepted }} Accepted
{{ stats().rejected }} Rejected
@if (loading()) {

Loading interviews...

} @else if (interviews().length === 0) {
work_off

No interviews found

Create your first interview to get started

} @else {
@for (iv of interviews(); track iv._id) {
{{ iv.candidateId?.name?.charAt(0)?.toUpperCase() }}

{{ iv.candidateId?.name }}

{{ iv.candidateId?.email }}

{{ formatStatus(iv.status) }} @if (iv.finalDecision !== 'pending') { {{ formatDecision(iv.finalDecision) }} }
work {{ iv.position }} @if (iv.techStack) { code {{ iv.techStack }} } person {{ iv.interviewerId?.name }} calendar_today {{ iv.dateOfInterview | date:'mediumDate' }}
Created
Quiz
Coding
Evaluate
Done
}
}
@if (showCreateModal()) { } @if (showDetailModal() && selectedInterview()) { } @if (selectedInterview()) { }