Sha256: 3bb8f14170469f35090e67225fa9d1ffe9f7f70731edc77c970c7ff4772ba382
Contents?: true
Size: 455 Bytes
Versions: 7
Compression:
Stored size: 455 Bytes
Contents
<h1>Listing things</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @things.each do |thing| %> <tr> <td><%= thing.name %></td> <td><%= link_to 'Show', thing %></td> <td><%= link_to 'Edit', edit_thing_path(thing) %></td> <td><%= link_to 'Destroy', thing, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Thing', new_thing_path %>
Version data entries
7 entries across 7 versions & 1 rubygems