27 lines
692 B
Plaintext
27 lines
692 B
Plaintext
<%= f.error_messages %>
|
|
<%= f.hidden_field :parent, :value => @item.parent.id %>
|
|
|
|
<p>
|
|
<%= f.label :name, "Name" %>
|
|
<%= f.text_field :name, :class => 'text' %>
|
|
</p>
|
|
|
|
<%= f.fields_for :i18n_variable, (@item.new_record? ? @item.build_i18n_variable : @item.i18n_variable) do |f| %>
|
|
<% @site_valid_locales.each do |locale| %>
|
|
<p>
|
|
<%= f.label :locale, "#{t('admin.title')} #{I18nVariable.from_locale(locale)}" %>
|
|
<%= f.text_field locale %>
|
|
</p>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<p>
|
|
<%= f.label :is_published, t('admin.is_published') %>
|
|
<%= f.radio_button :is_published, true %>Yes <%= f.radio_button :is_published, false %> No
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :url, "URL" %>
|
|
<%= f.text_field :url %>
|
|
</p>
|