%= error_messages_for :news_item %>
<% form_for [:admin, @news_item] do |f| %>
<%= f.label :title %>
<%= f.text_field :title, :class => "larger", :style => 'width: 954px' %>
<%= f.label :publish_date %>
<%= f.datetime_select :publish_date %>
<%= f.label :body %>
<%= f.text_area :body, :rows => "20", :class => "wymeditor" %>
<%= render :partial => "/shared/admin/form_actions", :locals => {:f => f,
:continue_editing => true} %>
<% end %>