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

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