<% @site_in_use_locales.each_with_index do |locale, i| %>
"> <%= f.fields_for :company_name_translations do |fe| %>
<%= fe.label locale, "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, "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, "Job Responsibilities", :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, "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, "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"} %>
Leave blank if its your current job