diff --git a/src/app/workspace-admin/files/files.component.html b/src/app/workspace-admin/files/files.component.html index 924e2ea9416e7339d4387fd543f40ec8d3d2b72a..48c8c6c04e568c02e85797c20ac268ef307bd000 100644 --- a/src/app/workspace-admin/files/files.component.html +++ b/src/app/workspace-admin/files/files.component.html @@ -94,14 +94,15 @@ </iqb-files-upload-queue> <ng-container *ngFor="let stat of fileStats.types | keyvalue"> - <alert level="info" text="{{stat.value.invalid}} valide Datei{{stat.value.invalid == 1 ? '' : 'en'}} vom Typ - {{stat.key}} {{(stat.value.total > stat.value.invalid) ? '(von insgesamt ' + stat.value.total + ')' : ''}}"> + <alert level="info" text="{{stat.value.total - stat.value.invalid}} valide + `{{stat.key}}`-Datei{{stat.value.invalid == 1 ? '' : 'en'}} + {{(stat.value.total > stat.value.invalid) ? '(von ' + stat.value.total + ')' : ''}}"> </alert> </ng-container> <alert level="info" text="{{fileStats.testtakers}} Testteilnehmer definiert."></alert> - <alert *ngIf="fileStats.invalid" level="error" text="{{fileStats.invalid}} Datei{{fileStats.invalid == 1 ? '' : 'en'}} + <alert *ngIf="fileStats.invalid" level="error" text="`{{fileStats.invalid}}` Datei{{fileStats.invalid == 1 ? '' : 'en'}} von {{fileStats.total}} sind nicht valide oder haben fehlende Abhängigkeiten und werden ignoriert!"> </alert> </div>