diff --git a/src/templates/bootstrap4/file/form.ejs b/src/templates/bootstrap4/file/form.ejs index c1b37136..23062c4c 100644 --- a/src/templates/bootstrap4/file/form.ejs +++ b/src/templates/bootstrap4/file/form.ejs @@ -124,6 +124,18 @@ {% }) %} + {% ctx.filesToUpload.forEach(function(file) { %} + {% if (file.status === 'progress') { %} +
{{ctx.fileSize(file.size)}}
+
+
+ {{file.progress}}% {{ctx.t('Complete')}} +
+
+ {% } else { %} +
{{ctx.t(file.message)}}
+ {% } %} + {% }) %} {% } %} {% if (!ctx.disabled && (ctx.component.multiple || !ctx.files.length)) { %} diff --git a/src/templates/bootstrap5/file/form.ejs b/src/templates/bootstrap5/file/form.ejs index 602a130b..61bc0123 100644 --- a/src/templates/bootstrap5/file/form.ejs +++ b/src/templates/bootstrap5/file/form.ejs @@ -124,6 +124,18 @@ {% }) %} + {% ctx.filesToUpload.forEach(function(file) { %} + {% if (file.status === 'progress') { %} +
{{ctx.fileSize(file.size)}}
+
+
+ {{file.progress}}% {{ctx.t('Complete')}} +
+
+ {% } else { %} +
{{ctx.t(file.message)}}
+ {% } %} + {% }) %} {% } %} {% if (!ctx.disabled && (ctx.component.multiple || !ctx.files.length)) { %}