search for: edit_artist_path

Displaying 1 result from an estimated 1 matches for "edit_artist_path".

2010 Aug 12
10
Scaffolding working...kinda
...********************************** <h1>Listing artists</h1> <table> <tr> </tr> <% @artists.each do |artist| %> <tr> <td><%= link_to ''Show'', artist %></td> <td><%= link_to ''Edit'', edit_artist_path(artist) %></td> <td><%= link_to ''Destroy'', artist, :confirm => ''Are you sure?'', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to ''New artist'', new_artist_p...