Sha256: ce1d6b1ab0aadc953e7862015d00c7508abd3bca36028be109a94f7d7b8e8fa0
Contents?: true
Size: 476 Bytes
Versions: 22
Compression:
Stored size: 476 Bytes
Contents
<h1>Listing galaxies</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @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 %> </table> <br /> <%= link_to 'New Galaxy', new_galaxy_path %>
Version data entries
22 entries across 6 versions & 1 rubygems