<%= form_for(@page) do |f| %>
<% if @page.errors.any? %>

<%= pluralize(@page.errors.count, "error") %> prohibited this page from being saved:

<% end %>
  1. <%= f.label :Location %>
    <%= f.collection_select :parent_id, Page.all(:order => "name"), :id, :name, :include_blank => true %> / <%= f.text_field :name %>
    • <%= f.label "Show in navigation?" %> <%= f.check_box :show_in_nav %>

      check box for item to appear in navigation

  2. <%= f.label :short_nav %>
    <%= f.text_field :short_nav %>
  3. <%= f.label :order %>
    <%= f.text_field :order_by %>

    this will appear in title

  4. <%= f.label :title %>
    <%= f.text_field :page_title %>

    this will appear in title

  5. <%= f.label :meta_keywords %>
    <%= f.text_area :meta_keywords, :class => 'small' %>
  6. <%= f.label :meta_description %>
    <%= f.text_area :meta_description, :class => 'small' %>
  7. <%= f.label :content %>
    <%= f.text_area :content %>

  8. <%= f.submit %>
<% end %>