<%= f.label :academic_type, t("recruitment.academictype"), :class => "col-sm-2 control-label" %>
<%= f.select :academic_type, @academic_types, {}, {:class => "form-control"} %>
<%= f.label :start_date, t("recruitment.start_date"), :class => "col-sm-2 control-label" %>
<%= f.datetime_picker :start_date, :no_label => true, :new_record => @academic.new_record?, :data=>{"picker-type" => "range", "range" => "start"} %>
<%= f.label :end_date, t("recruitment.end_date"), :class => "col-sm-2 control-label" %>
<%= f.datetime_picker :end_date, :no_label => true, :new_record => @academic.new_record?, :data=>{"picker-type" => "range", "range" => "end"} %>
<% @site_in_use_locales.each_with_index do |locale, i| %>
"> <%= f.fields_for :degree_name_translations do |fe| %>
<%= fe.label locale, t("recruitment.degree_name"), :class => "col-sm-2 control-label" %>
<%= fe.text_field locale, :class => "form-control", :value => @academic.degree_name_translations[locale] %>
<% end %> <%= f.fields_for :note_translations do |fe| %>
<%= fe.label locale, t("recruitment.note"), :class => "col-sm-2 control-label" %>
<%= fe.text_area locale, :rows => 10, :class => "form-control", :value => @academic.note_translations[locale] %>
<% end %>
<% end %>