Sha256: 77ef7bca1960e448f0937a23db45a8a2102265f4dcac287c384af2ae2f3b3d25
Contents?: true
Size: 529 Bytes
Versions: 16
Compression:
Stored size: 529 Bytes
Contents
<h1>Listing planets</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></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
16 entries across 4 versions & 1 rubygems