23 lines
607 B
Text
23 lines
607 B
Text
h1 Nothing to see here!
|
|
|
|
/ / Show upload success/errors and load details view.
|
|
/ .row
|
|
/ .callout
|
|
/
|
|
/ - if @invalid_images.any?
|
|
/ p These images were not accepted:
|
|
/
|
|
/ ul
|
|
/ - @invalid_images.each do |image|
|
|
/ li
|
|
/ ' #{image.image_file_name} (#{image.errors[:image].join(' and the image ')})
|
|
/
|
|
/
|
|
/
|
|
/ - if @valid_images.any?
|
|
/ .row
|
|
/ p
|
|
/ ' #{pluralize(@valid_images.length, 'screenshot')} received successfully.
|
|
/ ' Please review the images and add a description for each image. Thanks.
|
|
/
|
|
/ = render 'packages/details.slim'
|