Sha256: 1ac481a64be0a16cfec26f3f959467027b8e6cd2020967b2a0f3d80460cfadec
Contents?: true
Size: 509 Bytes
Versions: 20
Compression:
Stored size: 509 Bytes
Contents
<h1>Listing stars</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></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
20 entries across 4 versions & 1 rubygems