26 lines
690 B
Plaintext
26 lines
690 B
Plaintext
<%= f.error_messages %>
|
|
<%= f.hidden_field :parent_id %>
|
|
|
|
<p>
|
|
<%= f.label :name, t('admin.name') %>
|
|
<%= f.text_field :name, :class => 'text' %>
|
|
</p>
|
|
|
|
|
|
<% @site_valid_locales.each do |locale| %>
|
|
<p>
|
|
<%= label_tag "page[title]", "#{t('admin.title')} #{locale}" %>
|
|
<%= text_field_tag "page[i18n_variable][#{locale}]", (@i18n_variable[locale] if @i18n_variable), :class => 'text' %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<p>
|
|
<%= f.label :design_id, t('admin.design_name') %>
|
|
<%= f.select :design_id, Design.all.map{ |l| [l.title, l.id] } %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :is_published, "#{t('admin.is_published')} ?" %>
|
|
<%= f.radio_button :is_published, true %>Yes <%= f.radio_button :is_published, false %> No
|
|
</p>
|