Sha256: 81a15def71ac2c850be2b4200edfe25f568cce98ee221fac4b9fe345ad8eb381
Contents?: true
Size: 543 Bytes
Versions: 15
Compression:
Stored size: 543 Bytes
Contents
<p id="notice"><%= notice %></p> <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
15 entries across 3 versions & 1 rubygems