Sha256: 6d52b75bf3c54343939ad831bf9909040d4fe5371dcd46cd0d25ddcc9e76de6d
Contents?: true
Size: 531 Bytes
Versions: 16
Compression:
Stored size: 531 Bytes
Contents
<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
16 entries across 4 versions & 1 rubygems