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

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

<%= f.label :key %> <%= f.text_field :key %>
<% if @types.is_localized?(:title) %> <%= 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 => (@writing_conference_category.title_translations[locale] rescue nil) %>
<% end %> <% end %> <% else %>
<%= f.label :title %> <%= f.text_field :title %>
<% end %>
<%#= f.label :display %> <%#= f.radio_button :display, "List" List%> <%#= f.radio_button :display, "Picture" Picture%> <%#
顯示方式是設定在前台頁面時,資訊所呈現的樣式 %>
<%= f.submit t('submit'), :class=>'btn btn-primary' %>
<% end %>