@if (success()) {
✅ {{ success() }}
} @if (error()) {
⚠️ {{ error() }}
}
@if (fileName()) { 📄 {{ fileName() }} Change } @else { 📤 Click to upload Excel file Format: Question | Option1 | Option2 | Option3 | Option4 | Correct }
@if (assignmentType() === 'users') {
@for (user of filteredUsers; track user._id) {
{{ user.name }} {{ user.email }}
} @if (filteredUsers.length === 0) {
No candidates found
}
} @if (assignmentType() === 'groups') {
@for (group of groups(); track group) {
{{ group }}
} @if (groups().length === 0) {
No groups found
}
}

Existing Quizzes

@if (loadingQuizzes()) {
} @else if (quizzes().length === 0) {
📋

No quizzes yet

Create your first quiz above

} @else {
@for (quiz of quizzes(); track quiz._id) {

{{ quiz.title }}

⏱️ {{ quiz.timer }} min 📝 {{ quiz.totalQuestions }} questions
Created {{ quiz.createdAt | date:'mediumDate' }}
}
}