app/views/questionnaires/_form.html.haml in hackathon_manager-0.6.6 vs app/views/questionnaires/_form.html.haml in hackathon_manager-0.7.0

- old
+ new

@@ -18,11 +18,11 @@ = f.input :school_id, as: :school_selection, input_html: { "data-validate" => "presence" } = f.input :level_of_study, collection: collection_or_text(@questionnaire.level_of_study, Questionnaire::POSSIBLE_LEVELS_OF_STUDY), include_blank: "(select one...)", input_html: { "data-validate" => "presence" }, wrapper_html: { class: 'input--half' } = f.input :major, input_html: { "data-validate" => "presence" }, wrapper_html: { class: 'input--half' } = f.input :gender, collection: collection_or_text(@questionnaire.gender, Questionnaire::POSSIBLE_GENDERS), include_blank: "(select one...)", input_html: { "data-validate" => "presence" }, wrapper_html: { class: 'input--half' } = f.input :shirt_size, as: :select, collection: Questionnaire::POSSIBLE_SHIRT_SIZES, include_blank: "(select one...)", input_html: { "data-validate" => "presence" }, wrapper_html: { class: 'input--half' } - = f.input :dietary_restrictions, as: :text, placeholder: "Allergies, medical assistance, etc.", label: "Health restrictions", wrapper_html: { class: 'input--half' } - = f.input :special_needs, as: :text, placeholder: "Any special needs or requests", label: "Special needs", wrapper_html: { class: 'input--half' } + = f.input :dietary_restrictions, as: :text, label: "Health restrictions", wrapper_html: { class: 'input--half' } + = f.input :special_needs, as: :text, label: "Special needs", wrapper_html: { class: 'input--half' } .right %button.button{ type: "button", "data-wizard" => "next" } Next .wizard-stage