Sha256: 5be9c7bb6794b08e529c0709cb4f626c2557b0fa0b5c62b322a4b785b34fad1d

Contents?: true

Size: 472 Bytes

Versions: 3

Compression:

Stored size: 472 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Bars</h1>

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

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

<br>

<%= link_to 'New Bar', new_bar_path %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sandboxy-1.1.1 examples/rails_example/app/views/bars/index.html.erb
sandboxy-1.1.0 examples/rails_example/app/views/bars/index.html.erb
sandboxy-1.0.0 examples/rails_example/app/views/bars/index.html.erb