Sha256: 9fc0fe2261f9a692bf3ea070996b3ce79ef694838241001d23934ed7ce29375b
Contents?: true
Size: 491 Bytes
Versions: 25
Compression:
Stored size: 491 Bytes
Contents
<h1>Listing exoplanets</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @exoplanets.each do |exoplanet| %> <tr> <td><%= exoplanet.name %></td> <td><%= link_to 'Show', exoplanet %></td> <td><%= link_to 'Edit', edit_exoplanet_path(exoplanet) %></td> <td><%= link_to 'Destroy', exoplanet, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Exoplanet', new_exoplanet_path %>
Version data entries
25 entries across 15 versions & 1 rubygems