<%= f.text_field(
:staged_slug, :value => @node.staged_slug || @node.slug
)
%>
<%= text_field_tag :move_to_search_term, @node.parent.title rescue "" %>
Start typing to find a new parent for this node.
<%= f.hidden_field(
:staged_parent_id,
:value => @node.staged_parent_id || @node.parent_id
)
%>
<%= d.select :template_name, custom_page_templates, {:prompt => 'Select Template'} %>
Set automatically based on how this node was created - change it if needed.
<%= d.select :user_id, user_list,
:selected => @page.user_id || @node.draft&.user_id || @node.head&.user_id %>