@if (isLoading) { } @if (!isLoading) {
{{ t('View imported file:') }} {{ importedfile?.importedfile?.filename }}
@if (importedfile?.importedfile?.id) { {{ t('Download') }} }
@if (fileNotFound) {
{{ t('Can\'t read imported csv file') }}
{{ t('The imported file may have been deleted.') }}
} @if (fileIsEmpty) {
{{ t('File Content is not available in imported file') }}
{{ t('Maybe the file is no: CSV, or the file is empty') }}
} @if (importedfile && importedfile.filecontent) { @if (importedfile.filecontent.length > 0) { @for (line of importedfile.filecontent; track $index) { }
{{ $index }} {{ line }}
} }
}