50 lines
1.3 KiB
Text
50 lines
1.3 KiB
Text
.row
|
|
h1 Your uploaded images
|
|
|
|
.row
|
|
p
|
|
' Thanks for your upload. Please check the images and add
|
|
' short one-line descriptions that describe each of the images.
|
|
|
|
- if @invalid_images.any?
|
|
.callout.warning
|
|
p
|
|
' However the following screenshots were not accepted:
|
|
ul
|
|
- @invalid_images.each do |image|
|
|
li
|
|
' #{image.image_file_name} (#{image.errors[:image].join(' and ')})
|
|
|
|
|
|
- if @valid_images.any?
|
|
|
|
= form_for :screenshot, url: upload_review2_path do |f|
|
|
|
|
- @valid_images.each do |screenshot|
|
|
|
|
.row
|
|
|
|
.small-4.columns
|
|
a.black.fancybox href=screenshot.image.url(:large, timestamp: false) title='Uploaded image'
|
|
= image_tag(screenshot.image.url(:large, timestamp: false), alt: 'Uploaded image')
|
|
.small-8.columns
|
|
em Your file name:
|
|
p
|
|
= screenshot.image_file_name
|
|
|
|
em Description:
|
|
p
|
|
= text_field_tag "description-#{screenshot.id}"
|
|
|
|
em Delete this image?
|
|
p
|
|
= check_box "delete-#{screenshot.id}", "Delete this image"
|
|
|
|
.row
|
|
button.button type="submit" id="file-submit"
|
|
= fa_stacked_icon "check", base: "circle-thin"
|
|
' Done
|
|
|
|
- else
|
|
.row
|
|
a.button href=upload_path Back to upload form
|