= content_form.simple_fields_for :online_course_info do |f| .col-md-2 = f.label t('activerecord.attributes.online_course_info.registration_phase').titleize .col-md-10.text-left = f.input :registration_phase, label: false, required: false, collection: @tags.registration_phase_enum, as: :radio_buttons .col-md-2 = f.label t('activerecord.attributes.online_course_info.duration').titleize .col-md-10 = f.input :duration, label: false, required: false .col-md-2 = f.label t('activerecord.attributes.online_course_info.start_date').titleize .col-md-10 = f.input :start_date, label: false, required: false .col-md-2 = f.label t('activerecord.attributes.online_course_info.number_of_students').titleize .col-md-10 = f.input :number_of_students, label: false, required: false .col-md-2 = f.label t('activerecord.attributes.online_course_info.non_associate_price').titleize .col-md-10 = f.input :non_associate_price, as: :currency, currency: "R$", label: false, required: false .col-md-2 = f.label t('activerecord.attributes.online_course_info.associate_price').titleize .col-md-10 = f.input :associate_price, as: :currency, currency: "R$", label: false, required: false .col-md-2 = f.label t('activerecord.attributes.online_course_info.registration_url').titleize .col-md-10 = f.input :registration_url, label: false, required: false