.pull-left p = "Which year did you receive the award?" = simple_form_for current_user, url: profile_questions_path, turboboost: true, validate: true, html: { id: 'strengthen_profile' } do |f| = hidden_field_tag :step, "awards:date_received" .pull-left = f.fields_for :awards, [f.object.awards.first || f.object.awards.build] do |e| = e.input :date_received, start_year: Date.today.year - 15, end_year: Date.today.year + 5, as: :date, discard_day: true, discard_month: true, label: "Award Year", wrapper_html: {class: 'div-rpad-sel'} .pull-left button.btn-save | Save .pull-left = link_to 'Skip', edit_profile_questions_path(step: User::PROFILE_QUESTION.rindex('awards:date_received')), class: 'btn-skip inline', remote: true