Sha256: 813e81c9cbe1a4d064bc62b3df5883ab51d7c3fb2c1fa8b58362898c0fa6118e
Contents?: true
Size: 565 Bytes
Versions: 12
Compression:
Stored size: 565 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Galaxies</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></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
12 entries across 3 versions & 1 rubygems