{{#if this.imageRows}}
{{#each this.imageRows as |row index|}}
{{#each row as |image|}}
{{#unless this.koenigDragDropHandler.isDragging}}
{{svg-jar "koenig/kg-trash" class="fill-darkgrey w4 h4"}}
{{/unless}}
{{/each}}
{{/each}}
{{/if}}
{{#if (or uploader.isUploading (is-empty this.imageRows))}}
{{#if this.isDraggedOver}}
{{t "koenig.gallery.Drop 'em like it's hot 🔥"}}
{{else if uploader.isUploading}}
{{uploader.progressBar}}
{{else if (is-empty this.imageRows)}}
{{svg-jar "gallery-placeholder" class="kg-placeholder-gallery nudge-bottom--10"}}
{{t "koenig.gallery.Click to select up to 9 images"}}
{{/if}}
{{else if this.isDraggedOver}}
{{t "koenig.gallery.Drop to add up to 9 images"}}
{{/if}}
{{#if (and this.errorMessage (not this.isDraggedOver))}}
{{this.errorMessage}}.
{{t "koenig.gallery.Dismiss"}}
{{/if}}