Sha256: f779628761f8858e82e7bcd7e70d6fc15cec9fe00c58874556fe1f31f32b73e4
Contents?: true
Size: 461 Bytes
Versions: 60
Compression:
Stored size: 461 Bytes
Contents
<h1>Listing planets</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @planets.each do |planet| %> <tr> <td><%= planet.name %></td> <td><%= link_to 'Show', planet %></td> <td><%= link_to 'Edit', edit_planet_path(planet) %></td> <td><%= link_to 'Destroy', planet, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Planet', new_planet_path %>
Version data entries
60 entries across 15 versions & 1 rubygems