<% @site_in_use_locales.each_with_index do |locale, i| %>
"> <%= f.fields_for :company_name_translations do |fe| %>
<%= fe.label locale, t("recruitment.company_name"), :class => "col-sm-2 control-label" %>
<%= fe.text_field locale, :class => "form-control", :value => @experience.company_name_translations[locale] %>
<% end %> <%= f.fields_for :job_title_translations do |fe| %>
<%= fe.label locale, t("recruitment.job_title"), :class => "col-sm-2 control-label" %>
<%= fe.text_field locale, :class => "form-control", :value => @experience.job_title_translations[locale] %>
<% end %> <%= f.fields_for :responsibilities_translations do |fe| %>
<%= fe.label locale, t("recruitment.responsibility"), :class => "col-sm-2 control-label" %>
<%= fe.text_area locale, :rows => 10, :class => "form-control", :value => @experience.responsibilities_translations[locale] %>
<% end %>
<% end %>
<%= f.label :start_date, t("recruitment.start_date"), :class => "col-sm-2 control-label" %>
<%= f.datetime_picker :start_date, :no_label => true, :new_record => @experience.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 => @experience.new_record?, :data=>{"picker-type" => "range", "range" => "end"} %>
<%= t("recruitment.leave_blank") %>