BikeBikeBike/app/views/conferences/_form.html.haml

25 lines
704 B
Plaintext
Raw Normal View History

2014-03-09 14:43:33 -06:00
= form_for @conference do |f|
.columns
= f.text_field :title
= f.text_field :slug
2014-03-09 14:43:33 -06:00
.columns.medium-4
= f.image_field :poster, @conference.poster_url
= f.image_field :cover, @conference.cover_url
- # @parse_data['photos'].each do |img|
- # - if img['width'] > 980
- # %img{src: img['photo_file_url']}
2014-03-09 14:43:33 -06:00
.columns.medium-8
= f.collection_select :conference_type_id, ConferenceType.all, :id, :title
2014-03-09 14:43:33 -06:00
.row
.columns.small-6
= f.date_field :start_date
2014-03-09 14:43:33 -06:00
.columns.small-6
= f.date_field :end_date
= f.check_box :workshop_schedule_published
= f.check_box :meals_provided
= f.text_area :meal_info
= f.text_area :travel_info
2014-03-09 14:43:33 -06:00
.columns
= f.text_area :info
= f.actions :save