#info
section
.row
.col-sm-12.align-center.no-padding
= render 'profile/subjects'
.lightbg-bottom-border.ptb10
.text-left.pl15.bold
| Selected
#tutoring-courses-list.hbs.col-sm-12.col-md-12
= simple_form_for @user, as: :user, turboboost: true, :url => profile_path(params[:id]), validate: true, html: { class: 'dirty-form'} do |f|
= f.input :course_ids, as: :hidden, validate: true, input_html: {data: {load: f.object.courses.map{|c| {id: c.id, name: c.name}}}, value: ''}
= f.input :title, as: :hidden, input_html: { value: "#{Subject.model_name.human.pluralize}" }
= f.input :sub_title, as: :hidden, input_html: { value: "#{Course.model_name.human.pluralize}" }
.clearfix
label.center-block.w25.hide
.center-block.mt20.day-checkbox
= check_box_tag(:as_next_step)
.lightbg-top-border.p10
.row
.col-sm-4.no-padding class = "#{'hide' if @user.type == 'Tutor' and !@user.is_registration_completed? }"
= link_to edit_profile_path("courses_studying"), class: 'btn btn-link prv-nxt-btn pull-left'
| Back
.col-sm-4.not-visible
.pt10.skip_step
= link_to 'Skip', edit_profile_path(User.next_step(params[:id]))
.col-sm-4.no-padding
button.btn.btn-link.prv-nxt-btn.pull-right
| Done Adding My #{Course.model_name.human.pluralize}
.clearfix