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

<%= (@asset_category.new_record? ? 'Add' : 'Edit') %>

<%= f.label :key %> <%= f.text_field :key %>
<%= f.fields_for :i18n_variable, (@asset_category.new_record? ? @asset_category.build_i18n_variable : @asset_category.i18n_variable) do |f| %> <% @site_valid_locales.each do |locale| %>
<%= label_tag "name-#{locale}", "Name-#{I18nVariable.from_locale(locale)}", :class => 'control-label' %>
<%= f.text_field locale, :class => 'input-xxlarge' %>
<% end %> <% end %>
<%= f.submit t('submit'), :class=>'btn btn-primary' %>
<% end %>