<% # encoding: utf-8 %> <%= form_for(@asset_category, :remote => true, :url => @url) do |f| %>

<%= (@asset_category.new_record? ? t(:add) : t(:edit)) %>

<%= f.label :key %> <%= f.text_field :key %>
<%= f.fields_for :title_translations do |f| %> <% @site_in_use_locales.each do |locale| %>
<%= label_tag "name-#{locale}", "#{t(:name)}-#{I18nVariable.from_locale(locale)}", :class => 'control-label' %>
<%= f.text_field locale, :class => 'input-xxlarge', :value => (@asset_category.title_translations[locale] rescue nil) %>
<% end %> <% end %>
<%= f.submit t('submit'), :class=>'btn btn-primary' %>
<% end %>