blob: a5668e23e0c07cc4aa53d338761f636e278e365b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<h1>Nodes#edit</h1>
<h1>Editing page</h1>
<% form_for(@page) do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :node_id %><br />
<%= f.text_field :node_id %>
</p>
<p>
<%= f.label :title %><br />
<%= f.text_field :title %>
</p>
<p>
<%= f.label :abstract %><br />
<%= f.text_area :abstract %>
</p>
<p>
<%= f.label :body %><br />
<%= f.text_area :body %>
</p>
<p>
<%= f.label :revision %><br />
<%= f.text_field :revision %>
</p>
<p>
<%= f.submit "Update" %>
</p>
<% end %>
<%= link_to 'Show', @page %> |
<%= link_to 'Back', pages_path %>
|