Editing page

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

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

<%= d.label 'Tags, comma sperated' %>
<%= text_field_tag :tag_list, @draft.tag_list.join(", ") %>

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

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

<% end %>

<%= f.submit "Update" %>

<% end %>