Displaying 1 result from an estimated 1 matches for "destroy_todo".
Did you mean:
destroy_node
2006 Jan 21
0
helpefying a list partial
...39;show_todo'', :id =>
todo) %></td>
<td><%= link_to(image_tag("/images/edit.png"), :action => ''edit_todo'', :id =>
todo) %></td>
<td><%= link_to(image_tag("/images/delete.png"), { :action =>
''destroy_todo'', :id => todo }, :confirm => ''Are you sure?'') %></td>
</tr>
<% end %>
The only thing that changes is the word ''todo''. Ik would like something like:
<% crud(current list item) %>
Is that doable? And is a helper the ri...