@if (error()) {
error {{ error() }}
} @if (loading()) {

Loading quizzes...

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

No quizzes yet

Create your first quiz to get started.

Create Quiz
} @else if (!selectedCategory()) {
@for (group of categoryGroups(); track group.name; let i = $index) { }
} @else {
@for (quiz of filteredQuizzes(); track quiz._id) {

{{ quiz.title }}

{{ quiz.difficulty || 'General' }}
help {{ quiz.totalQuestions }} questions
timer {{ quiz.timer }} min
category {{ quiz.category || 'Uncategorized' }}
person_add Assign @if (quiz.attemptCount > 0) { lock {{ quiz.attemptCount }} attempt{{ quiz.attemptCount > 1 ? 's' : '' }} } @else { }
}
}
@if (showEditPopup()) { }