mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
8 lines
483 B
Text
8 lines
483 B
Text
= f.input :name
|
|
= f.input :description, :input_html => {:rows => 2, data: { provide: "markdown-editable" } }, hint: markdown_hint("Write about the hotel/place, of what they are offering, about types of rooms, prices and address.")
|
|
= image_tag f.object.photo(:thumb) if !f.object.photo.blank?
|
|
= f.input :photo
|
|
= f.input :website_link
|
|
= f.action :submit, as: :button, button_html: { class: 'btn btn-primary' }
|
|
|
|
= link_to 'Back', admin_conference_lodgings_path(@conference.short_title)
|