<% # encoding: utf-8 %>
<%= f.label :key %> <%= f.text_field :key %>
<%= f.fields_for :title_translations do |f| %> <% @site_in_use_locales.each do |locale| %>
<%= label_tag "title-#{locale}", "Title-#{I18nVariable.from_locale(locale)}", :class => 'control-label' %>
<%= f.text_field locale, :class => 'input-xxlarge', :value => (news_bulletin_category.title_translations[locale] rescue nil) %>
<% end %> <% end %>
<%= f.label :display %> <%= f.radio_button :display, "List" %>List <%= f.radio_button :display, "Picture" %>Picture
顯示方式是設定在前台頁面時,資訊所呈現的樣式