osem-fcy/app/views/admin/lodgings/_lodging_fields.html.erb

11 lines
509 B
Text
Raw Normal View History

2014-06-14 21:48:43 +05:30
<div class="nested-fields">
<%= f.inputs do %>
<%= 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.") %>
2014-06-14 21:48:43 +05:30
<%= image_tag f.object.photo(:thumb) if !f.object.photo.blank? %>
<%= f.input :photo %>
2014-06-14 23:32:52 +05:30
<%= f.input :website_link %>
2014-06-14 21:48:43 +05:30
<%= remove_association_link :lodging, f %>
<% end %>
</div>