<%= form_for @sub_attribute,:url => eval("admin_#{@attribute_type}s_path") ,:class=> "form-horizontal", :id=>"new_bulletin_category", remote: true do |f| %>
    <fieldset>
      <legend><%= t(eval(":#{@attribute_type}"))%>:<%= @attribute.title %></legend>
      <label class="muted" for="key"><%= t(:key) %></label>
      <% if @sub_attribute.new_record? %>
          <%= f.text_field :key, :class => "input-large", :placeholder => t(:key) %>
      <% else %>
          <div><%= @sub_attribute.key%></div>
      <% end %>

      <% @site_valid_locales.each_with_index do |locale, i| %>

      <label class="muted" for="name-en"><%= t(:item_name) %>(<%= I18nVariable.from_locale(locale) %>)</label>
      <input id="name-<%= locale %>" type="text" class="input-large" placeholder="<%= t(:item_name) %>" name="<%="sub_role[title_translations][#{locale}]"%>">

      <% end %>

      <label class="muted" for="name-zh-tw"><%= t(:to_search) %></label>
      <label class="radio inline">
          <%= f.radio_button :to_search, true %>
          Yes
      </label>
      <label class="radio inline">
          <%= f.radio_button :to_search, false %>
          No
      </label>
      <div class="form-actions">
        <%= f.hidden_field :role_id, :value => params[:role_id] if !params[:role_id].blank? %>
        <%= f.submit t('submit'), :class=>'btn btn-primary btn-small' %>
        <%= link_to t('cancel'), 'javascript:$.pageslide.close()', :class=>" btn-small" %>
      </div>
    </fieldset>
<% end %>