mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-01-19 22:27:59 +01:00
add error tags to gallery form
This commit is contained in:
parent
19f9cf7db4
commit
d8e3b9e4ff
1 changed files with 5 additions and 0 deletions
|
@ -6,19 +6,24 @@
|
|||
.field
|
||||
= label f, :title, "Choose a title displayed in gallery preview"
|
||||
= text_input f, :title, class: "input input--wide", placeholder: "Title", required: true
|
||||
= error_tag f, :title
|
||||
.field
|
||||
= label f, :spoiler_warning, "If you are going to have NSFW images in the gallery, leave a warning for users who may not want to see it"
|
||||
= text_input f, :spoiler_warning, class: "input input--wide", placeholder: "Spoiler warning"
|
||||
= error_tag f, :spoiler_warning
|
||||
.field
|
||||
= label :description, "Describe the gallery in a few words"
|
||||
= textarea f, :description, class: "input input--wide", placeholder: "Description"
|
||||
= error_tag f, :description
|
||||
.field
|
||||
= label f, :thumbnail_id, "Set an existing image as the gallery cover"
|
||||
br
|
||||
= number_input f, :thumbnail_id, class: "input", placeholder: "Image ID (e.g. 100)", min: 0
|
||||
= error_tag f, :thumbnail_id
|
||||
.field
|
||||
= label f, :order_position_asc, "Reverse gallery order (images will be inserted at the end of the gallery)"
|
||||
= checkbox f, :order_position_asc, class: "checkbox"
|
||||
= error_tag f, :order_position_asc
|
||||
.field
|
||||
|
||||
= submit "Save Gallery", class: "button"
|
||||
|
|
Loading…
Reference in a new issue