move to SRS Algo
This commit is contained in:
@@ -14,22 +14,31 @@
|
||||
Anzeigen
|
||||
</button>
|
||||
|
||||
<!-- Gewusst Button -->
|
||||
<!-- Nochmal Button -->
|
||||
<button
|
||||
(click)="markKnown()"
|
||||
(click)="markAgain()"
|
||||
class="bg-orange-500 disabled:bg-orange-200 text-white py-2 px-4 rounded hover:bg-orange-600"
|
||||
[disabled]="!isShowingBox || currentBoxIndex >= boxesToReview.length"
|
||||
>
|
||||
Nochmal
|
||||
</button>
|
||||
|
||||
<!-- Gut Button -->
|
||||
<button
|
||||
(click)="markGood()"
|
||||
class="bg-blue-500 disabled:bg-blue-200 text-white py-2 px-4 rounded hover:bg-blue-600"
|
||||
[disabled]="!isShowingBox || currentBoxIndex >= boxesToReview.length"
|
||||
>
|
||||
Gewusst
|
||||
Gut
|
||||
</button>
|
||||
|
||||
<!-- Nicht gewusst Button -->
|
||||
<!-- Einfach Button -->
|
||||
<button
|
||||
(click)="markUnknown()"
|
||||
class="bg-red-500 disabled:bg-red-200 text-white py-2 px-4 rounded hover:bg-red-600"
|
||||
(click)="markEasy()"
|
||||
class="bg-green-500 disabled:bg-green-200 text-white py-2 px-4 rounded hover:bg-green-600"
|
||||
[disabled]="!isShowingBox || currentBoxIndex >= boxesToReview.length"
|
||||
>
|
||||
Nicht gewusst
|
||||
Einfach
|
||||
</button>
|
||||
|
||||
<!-- Nächstes Bild Button -->
|
||||
@@ -43,7 +52,7 @@
|
||||
</div>
|
||||
|
||||
<p class="mt-2">{{ progress }}</p>
|
||||
<p class="mt-2">Gewusst: {{ knownCount }} | Nicht gewusst: {{ unknownCount }}</p>
|
||||
<!-- <p class="mt-2">Gewusst: {{ knownCount }} | Nicht gewusst: {{ unknownCount }}</p> -->
|
||||
|
||||
<button
|
||||
(click)="closeTraining()"
|
||||
|
||||
Reference in New Issue
Block a user