I'm trying to create a feature that allows users to edit a Client entry directly from the index page. When the user clicks 'Edit', a partial is rendered which replaces the elements with input text fields. But when the 'Update client' button is pressed, I get the error:
"No route matches [POST] "/clients/27"
I'm able to create new clients and destroy clients directly from the index... what am I doing wrong with the update action?
The partial:
<tr id="test">
<%= form_for Client.find(27), :method => :PUT do |f| %>
<td class="input">
<%= f.text_field :name, :value => "Test" %>
</td>
<td class="input">
<%= f.text_field :company %>
</td>
<td class="input">
<%= f.text_field :email %>
</td>
<td class="grayedOut"></td>
<td class="actions">
<%= f.submit "Confirm edit" %>
</td>
<% end %>
</tr>
routes.rb file:
resources :clients do
resources :projects do
resources :items
end
end
:method => :put, not :PUT. – sevenseacat Nov 21 '12 at 2:32resources :clients do resources :projects do resources :items end end– effbott Nov 21 '12 at 17:13