Sha256: ca40b998707d3692a4e571fb9640eaea39a1c21860efa60260cb56a95d177288
Contents?: true
Size: 476 Bytes
Versions: 2
Compression:
Stored size: 476 Bytes
Contents
<h1>Listing boxes</h1> <table> <tr> <th>Name</th> <th>Notes</th> <th></th> <th></th> <th></th> </tr> <% @boxes.each do |box| %> <tr> <td><%= box.name %></td> <td><%= box.notes %></td> <td><%= link_to 'Show', box %></td> <td><%= link_to 'Edit', edit_box_path(box) %></td> <td><%= link_to 'Destroy', box, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Box', new_box_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nested_scaffold-0.2.1 | test/dummy/app/views/boxes/index.html.erb |
nested_scaffold-0.2.0 | test/dummy/app/views/boxes/index.html.erb |