Nodes#edit

Editing page

<%= I18n.locale %> <%= @node.unique_name %>
<% form_for(@node) do |f| %> <%= f.error_messages %> <% draft = @node.find_or_create_draft( current_user ) %> <% fields_for draft do |d| %>

<%= d.label :title %>
<%= d.text_field :title %>

<%= d.label :abstract %>
<%= d.text_area :abstract %>

<%= d.label :body %>
<%= d.text_area :body, :class => 'with_editor' %>

<% end %>

<%= f.submit "Update" %>

<% end %> <%= link_to 'Show', @node %> | <%= link_to 'Back', nodes_path %>