Create new node

<%= error_messages_for( :node ).gsub("Slug", "Title") %>

What kind of node do you want to create?

<% form_tag nodes_path do %>
Type
<%= radio_button_tag :kind, "top_level" %> Top Level

<%= radio_button_tag :kind, "generic", :selected => true %> Generic ( can be created anywhere )

<%= radio_button_tag :kind, "update" %> Update / Press release ( is automatically created in /updates )

Title <%= text_field_tag :title %>
Parent <%= text_field_tag :parent_search_term %> <%= hidden_field_tag :parent_id %>
<%= submit_tag "Create" %>
<% end %>