Displaying 1 result from an estimated 1 matches for "edit_company_path".
2008 May 28
15
Help with output
...<% if session[:user_id] %>
<td><%= link_to "[old view]", :controller
=> "companies", :action=> "show_org", :id => company.id %></td>
<td><%= link_to "[edit]",
edit_company_path(company) %></td>
<td><%= link_to "[delete]",
company, :confirm => ''Are you sure?'', :method => :delete %></td>
<% end %>
<% end %>
&l...