ClassQuiz - Overview
{#await getData()} {:then quizzes}
{#if quizzes.length !== 0}
{#each quizzes as quiz} {/each}
{$t('words.title')} {$t('overview_page.created_at')} {$t('overview_page.question_count')} {$t('words.play')} {$t('words.edit')} {$t('words.delete')} {$t('words.public')}
{quiz.title} {formatDate(quiz.created_at)} {quiz.questions.length} {$t('words.edit')} {#if quiz.public} ✅ {:else} ❌ {/if}
{:else}

Looks like you don't have any quizzes. Wanna change that? Click the "Create"-button, or import a quiz from KAHOOT!

{/if}
{:catch err}

{err}

{/await}