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