<%= render 'index' %>
<%= form_for :category, url: nil, remote: true do |f| %>
<%= f.fields_for :title_translations do |f| %> <% @site_in_use_locales.each do |locale| %> <%= label_tag "name-#{locale}", "#{t(:name)} (#{t(locale)})" %> <%= f.text_field locale, :class => 'input-large', :value => (@category.title_translations[locale] rescue ''), placeholder: t(:name), id: locale %> <% end %> <% end %> <%= label_tag "disable" do %> <%= f.check_box :disable %> <%= t(:disable) %> <% end %>
<%= t(:cancel) %> <%= f.submit t(:submit), class: 'btn btn-primary btn-small' %>
<% end %>