blob: 0b64046f07444dcb238a0bd4ba32b2e46074000a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<h1>edit wiki page</h1>
<%= form_with(model: @node, local: true) do |form| %>
<p>
<%= form.label :title %><br>
<%= form.text_field :title %>
</p>
<p>
<%= form.label :content %><br>
<%= form.text_area :content %>
</p>
<%= form.collection_select :parent, @nodes, :id, :title, include_blank: true, :selected => @node&.parent&.id %>
<p>
<%= form.submit %>
</p>
<% end %>
<% link_to 'Back', nodes_path %>
|