Sha256: 09923ddb4324aaff656e83b4debceec92beb321b13ce5d043f7192947127acaf
Contents?: true
Size: 551 Bytes
Versions: 23
Compression:
Stored size: 551 Bytes
Contents
<h1>Listing galaxies</h1> <table> <thead> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @galaxies.each do |galaxy| %> <tr> <td><%= galaxy.name %></td> <td><%= link_to 'Show', galaxy %></td> <td><%= link_to 'Edit', edit_galaxy_path(galaxy) %></td> <td><%= link_to 'Destroy', galaxy, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Galaxy', new_galaxy_path %>
Version data entries
23 entries across 6 versions & 1 rubygems