2011-04-13 10:19:51 +00:00
|
|
|
<%= f.hidden_field :parent_id %>
|
2010-01-14 10:30:53 +00:00
|
|
|
|
2009-05-22 06:43:52 +00:00
|
|
|
<p>
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= f.label :name, t('admin.name') %>
|
2011-05-09 10:49:57 +00:00
|
|
|
<%= f.text_field :name, :class => 'text' %>
|
2010-01-08 10:36:36 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
2011-04-13 10:19:51 +00:00
|
|
|
<% @site_valid_locales.each do |locale| %>
|
|
|
|
<p>
|
2011-01-31 02:57:41 +00:00
|
|
|
<%= label_tag "page[title]", "#{t('admin.title')} #{locale}" %>
|
|
|
|
<%= text_field_tag "page[i18n_variable][#{locale}]", (@i18n_variable[locale] if @i18n_variable), :class => 'text' %>
|
2011-04-13 10:19:51 +00:00
|
|
|
</p>
|
|
|
|
<% end %>
|
2010-01-08 10:36:36 +00:00
|
|
|
|
2009-05-22 06:43:52 +00:00
|
|
|
<p>
|
2011-03-01 07:58:42 +00:00
|
|
|
<%= f.label :layout_id, t('admin.layout_name') %>
|
|
|
|
<%= f.select :layout_id, Layout.all.map{ |l| [l.description, l.id] } %>
|
2009-05-22 06:43:52 +00:00
|
|
|
</p>
|
|
|
|
|
2011-04-13 10:19:51 +00:00
|
|
|
<p>
|
|
|
|
<%= f.label "content", t('admin.content') %>
|
|
|
|
<%= f.text_area "content", :size => '100x30' %>
|
2009-06-22 08:04:06 +00:00
|
|
|
</p>
|
|
|
|
|
2009-05-22 06:43:52 +00:00
|
|
|
<p>
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= f.label :is_published, "#{t('admin.is_published')} ?" %>
|
2010-01-08 10:36:36 +00:00
|
|
|
<%= f.radio_button :is_published, true %>Yes <%= f.radio_button :is_published, false %> No
|
2009-05-22 06:51:32 +00:00
|
|
|
</p>
|