2014-11-25 10:47:18 +01:00
|
|
|
.row
|
|
|
|
|
.col-md-12
|
|
|
|
|
.page-header
|
|
|
|
|
%h1
|
|
|
|
|
- if @lodging.new_record?
|
|
|
|
|
New
|
|
|
|
|
Lodging
|
|
|
|
|
= @lodging.name
|
|
|
|
|
.row
|
|
|
|
|
.col-md-8
|
2017-03-11 13:25:39 +05:30
|
|
|
= semantic_form_for(@lodging, url: (@lodging.new_record? ? admin_conference_lodgings_path : admin_conference_lodging_path(@conference.short_title, @lodging))) do |f|
|
2014-11-25 10:47:18 +01:00
|
|
|
= f.input :name
|
|
|
|
|
= f.input :website_link
|
|
|
|
|
= f.input :description, input_html: { rows: 5, cols: 20, data: { provide: 'markdown-editable' } }, hint: markdown_hint
|
2016-04-27 15:27:33 +02:00
|
|
|
- if @lodging.picture?
|
|
|
|
|
= image_tag @lodging.picture.thumb.url
|
|
|
|
|
= f.input :picture
|
2014-11-25 10:47:18 +01:00
|
|
|
%p.text-right
|
|
|
|
|
= f.action :submit, as: :button, button_html: { class: 'btn btn-primary' }
|