Sha256: 1cd1b5c992c231b7400081ed3a33e79926e40c9851e563944f6895ebb1685292
Contents?: true
Size: 593 Bytes
Versions: 3
Compression:
Stored size: 593 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Exoplanets</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></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
3 entries across 3 versions & 1 rubygems