Sha256: be8aef8a1810cd811068c1fa2abbe6f7487e6c0aa116811d76a9d9587479069d
Contents?: true
Size: 406 Bytes
Versions: 33
Compression:
Stored size: 406 Bytes
Contents
<h1>Listing things</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% @things.each do |thing| %> <tr> <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
33 entries across 17 versions & 1 rubygems