Sha256: ea60e1189c42d72e59696dbc478588b5d3e60fc565659e7bd3499eadbec800f0
Contents?: true
Size: 454 Bytes
Versions: 28
Compression:
Stored size: 454 Bytes
Contents
<h1>Listing stars</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @stars.each do |star| %> <tr> <td><%= star.name %></td> <td><%= link_to 'Show', star %></td> <td><%= link_to 'Edit', edit_star_path(star) %></td> <td><%= link_to 'Destroy', star, :method => :delete, :data => { :confirm => 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Star', new_star_path %>
Version data entries
28 entries across 6 versions & 1 rubygems