21 lines
363 B
Plaintext
21 lines
363 B
Plaintext
<h1>Editing pages</h1>
|
|
|
|
<% form_for @page, :url => admin_page_path(@page) do |f| %>
|
|
<%= f.error_messages %>
|
|
|
|
<p>
|
|
<%= f.label :name, "Name" %>
|
|
<%= f.text_field :name %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :content, "Content" %>
|
|
<%= f.text_area :content %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.submit 'Update' %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<%= link_to 'Back', admin_pages_path %> |