This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
2007-10-04 00:54:54 -04:00
|
|
|
<h1>Editing page</h1>
|
|
|
|
|
|
|
|
<%= error_messages_for :page %>
|
|
|
|
|
|
|
|
<% form_for(:page, :url => page_path({ :id => @page.title_for_url }), :html => { :method => :put }) do |f| %>
|
2007-11-15 19:57:44 -05:00
|
|
|
<%= render :partial => 'page_form' %>
|
|
|
|
<p>
|
|
|
|
<%= submit_tag "Update" %>
|
|
|
|
</p>
|
2007-10-04 00:54:54 -04:00
|
|
|
<% end %>
|
|
|
|
|
2007-11-15 19:57:44 -05:00
|
|
|
<% content_for :sidebar do -%>
|
|
|
|
<%= link_to 'Show', page_path({ :id => @page.title_for_url }) %><br />
|
|
|
|
<%= link_to 'Browse Pages', pages_path %><br />
|
|
|
|
<% end -%>
|