Sha256: 092120e38f524e6c3ab57c889722a75c178d94d8cb729fce5711f581ee1078cf

Contents?: true

Size: 559 Bytes

Versions: 4

Compression:

Stored size: 559 Bytes

Contents

<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

4 entries across 4 versions & 1 rubygems

Version Path
tabulous-2.1.4 spec/applications/subtabs/rails_4-1-1/app/views/exoplanets/index.html.erb
tabulous-2.1.3 spec/applications/subtabs/rails_4-1-1/app/views/exoplanets/index.html.erb
tabulous-2.1.2 spec/applications/subtabs/rails_4-1-1/app/views/exoplanets/index.html.erb
tabulous-2.1.1 spec/applications/subtabs/rails_4-1-1/app/views/exoplanets/index.html.erb