orbit-basic/app/views/admin/pages/_form.html.erb

30 lines
775 B
Plaintext
Raw Normal View History

<%= f.hidden_field :parent_id %>
2009-05-22 06:43:52 +00:00
<p>
<%= f.label :name, t('admin.name') %>
<%= f.text_field :name, :class => 'text' %>
2010-01-08 10:36:36 +00:00
</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 %>
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>
<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>
<%= 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>