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

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