Sha256: 17e65a1a4c461740575e0188c7e57e89e478f401e49f9483c3e5996ca2ca1773

Contents?: true

Size: 557 Bytes

Versions: 5

Compression:

Stored size: 557 Bytes

Contents

<h1>Listing admin_foos</h1>

<table>
  <thead>
    <tr>
      <th>Bar</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @admin_foos.each do |admin_foo| %>
      <tr>
        <td><%= admin_foo.bar %></td>
        <td><%= link_to 'Show', admin_foo %></td>
        <td><%= link_to 'Edit', edit_admin_foo_path(admin_foo) %></td>
        <td><%= link_to 'Destroy', admin_foo, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Admin foo', new_admin_foo_path %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
before_actions-2.0.3 spec/dummy/app/views/admin_foos/index.html.erb
before_actions-2.0.2 spec/dummy/app/views/admin_foos/index.html.erb
before_actions-2.0.1 spec/dummy/app/views/admin_foos/index.html.erb
before_actions-2.0.0 spec/dummy/app/views/admin_foos/index.html.erb
before_actions-1.0.3 spec/dummy/app/views/admin_foos/index.html.erb