Sha256: 13ed297b79ddf82279dd35f2d23331c025cc08f61cb14568cef14c2d77495bfa
Contents?: true
Size: 549 Bytes
Versions: 23
Compression:
Stored size: 549 Bytes
Contents
<h1>Listing planets</h1> <table> <thead> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @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, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Planet', new_planet_path %>
Version data entries
23 entries across 6 versions & 1 rubygems