<%= f.hidden_field :parent_id %>

<%= f.label :name, t('admin.name') %> <% if @page.parent_id.nil? %> <%= f.text_field :name, :class => 'text', :value => 'home', :disabled => true %> <%= f.hidden_field :name, :value => 'home' %> <% else %> <%= f.text_field :name, :class => 'text' %> <% end %>

<% @site_valid_locales.each do |locale| %>

<%= label_tag "page[title]", "#{t('admin.title')} #{locale}" %> <%= text_field_tag "page[i18n_variable][#{locale}]", (@i18n_variable[locale] if @i18n_variable), :class => 'text' %>

<% end %>

<%= f.label :layout_id, t('admin.layout_name') %> <%= f.select :layout_id, Layout.all.map{ |l| [l.description, l.id] } %>

<%= f.label "content", t('admin.content') %> <%= f.text_area "content", :size => '100x30' %>

<%= f.label :is_published, "#{t('admin.is_published')} ?" %> <%= f.radio_button :is_published, true %>Yes <%= f.radio_button :is_published, false %> No