Sha256: 94466f99988ca23bff98f6eb32f67a115fdb7b66f8477c9af18d6e47a7fb28b7
Contents?: true
Size: 529 Bytes
Versions: 29
Compression:
Stored size: 529 Bytes
Contents
<h1>Listing stars</h1> <table> <thead> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @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 %> </tbody> </table> <br> <%= link_to 'New Star', new_star_path %>
Version data entries
29 entries across 6 versions & 1 rubygems