form_extensions submit_tag example You can see an example code of multiple submit buttons with form_for method like this: <%= f.submit "Update", :url => {:action => 'update', :id => @person.id}, :method => 'put' %> <%= f.submit "Copy", :url => {:action => 'create'}, :method => 'post' %> <%= f.submit "Toggle", :url => {:action => 'toggle_deleted', :id => @person.id}, :method => 'post' %> And you ca