<% # encoding: utf-8 %> <%= form_for(:role_filter, :remote => true, :url => @url, :method => @verb, :html => { :id => 'form_role_filter' } ) do |f| %>

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

<%= f.label :key %> <%= f.text_field :key %>
<%= f.fields_for :title_translations 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', :value => (@role_filter.title_translations[locale] rescue nil) %>
<% end %> <% end %>
<%= f.hidden_field :role_id, :value => params[:role_id] if !params[:role_id].blank? %> <%= f.submit 'Submit/送出', :class=>'btn btn-primary' %>
<% end %>