<%= render "shared/error_messages", :target => @page %> <%= form_for(:page, :url => collection_url, :html => { :multipart => true }) do |f| %>
<%= f.field_container :title do %> <%= f.label :title, t("cms.title") %> *
<%= f.text_field :title, :class => 'fullwidth title' %> <%= f.error_message_on :title %> <% end %>
<%= f.field_container :body_raw do %> <%= f.label :body_raw, t("cms.body")%> *
<%= f.text_area :body_raw, {:cols => 120, :rows => 4, :class => 'fullwidth'} %> <%= f.error_message_on :body_raw %> <% end %>
<%= render :partial => 'admin/shared/new_resource_links' %>
<% end %>